-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 865 Bytes
/
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
{
"name": "cubic-bezier-editor",
"version": "1.0.6",
"description": "Editor for generating cubic bezier value to use in css animations",
"main": "dist/cubic-bezier-editor.min.js",
"scripts": {
"start": "parcel index.html",
"dev": "parcel watch index.html",
"build": "parcel build src/index.js --out-file cubic-bezier-editor.min.js --target node",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ju99ernaut/cubic-bezier.git"
},
"keywords": [
"cubic-bezier",
"easing",
"editor"
],
"author": "Brendon Ngirazi",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ju99ernaut/cubic-bezier/issues"
},
"homepage": "https://github.com/Ju99ernaut/cubic-bezier#readme",
"devDependencies": {
"parcel-bundler": "^1.12.4"
}
}