-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "swoopy",
"version": "0.0.17",
"description": "Draw swoopy lines.",
"main": "build/swoopy.js",
"unpkg": "build/swoopy.min.js",
"jsdelivr": "build/swoopy.min.js",
"module": "index",
"scripts": {
"pretest": "rm -rf build && mkdir build && rollup -c --banner \"$(preamble)\"",
"test": "tape 'test/**/*-test.js'",
"prepublish": "npm run test && uglifyjs build/swoopy.js -c -m -o build/swoopy.min.js",
"postpublish": "zip -j build/swoopy.zip -- LICENSE README.md build/swoopy.js build/swoopy.min.js"
},
"devDependencies": {
"@babel/core": "^7.13.8",
"@babel/preset-env": "^7.13.8",
"babel": "^6.23.0",
"package-preamble": "^0.1.0",
"rollup": "^3.29.5",
"rollup-plugin-babel": "^4.3.3",
"tape": "^4.13.0",
"uglify-js": "^3.7.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HarryStevens/swoopy.git"
},
"keywords": [
"bezier",
"curves",
"swoopy",
"lines"
],
"author": {
"name": "Harry Stevens",
"email": "[email protected]",
"url": "http://harryjstevens.com/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/HarryStevens/swoopy/issues"
},
"homepage": "https://github.com/HarryStevens/swoopy#readme"
}