forked from HarryStevens/geometric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.72 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "geometric",
"version": "2.2.6",
"description": "A JavaScript library with geometric functions.",
"module": "index",
"scripts": {
"build": "tsc --project ./tsconfig.json && cp dist/index.js index.js && sed -i -e 's|[.]/|./dist/|g' index.js",
"watch": "tsc -w",
"test": "tape -r ts-node/register test/**/*-test.ts",
"prepublish": "npm run test && uglifyjs build/geometric.js -c -m -o build/geometric.min.js",
"postpublish": "zip -j build/geometric.zip -- LICENSE README.md build/geometric.js build/geometric.min.js",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@types/node": "^14.14.37",
"@types/tape": "^4.13.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"babel": "^6.23.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.2.0",
"package-preamble": "0.1",
"prettier": "^2.2.1",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.3.2",
"tape": "4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.2.4",
"uglify-js": "^2.8.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HarryStevens/geometric.git"
},
"keywords": [
"geometry"
],
"author": {
"name": "Harry Stevens",
"email": "[email protected]",
"url": "http://harryjstevens.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/HarryStevens/geometric/issues"
},
"homepage": "https://github.com/HarryStevens/geometric#readme",
"files": [
"dist/**/*"
]
}