-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
42 lines (42 loc) · 1.26 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
{
"name": "geometric",
"version": "2.5.5",
"description": "A JavaScript library with geometric functions.",
"main": "build/geometric.js",
"unpkg": "build/geometric.min.js",
"jsdelivr": "build/geometric.min.js",
"module": "index",
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup -c --banner \"$(preamble)\"",
"test": "tape 'test/**/*-test.js'",
"prepublishOnly": "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"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"babel": "^6.23.0",
"package-preamble": "0.1",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^4.3.2",
"tape": "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"
}