-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "bezier-easing-editor",
"version": "0.8.0",
"description": "Cubic Bezier Curve editor made with React & SVG",
"main": "lib/index.js",
"files": [
"src",
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"compile": "rm -rf lib/ && babel --presets es2015,stage-1,react --source-maps -d lib src",
"watch": "babel --presets es2015,stage-1,react --source-maps -w -d lib src",
"prepublish": "npm run compile"
},
"peerDependencies": {
"react": "*"
},
"repository": {
"type": "git",
"url": "[email protected]:gre/bezier-easing-editor.git"
},
"keywords": [
"react-component",
"bezier-easing",
"cubic-bezier",
"easing",
"editor"
],
"author": "Gaëtan Renaudeau",
"license": "MIT",
"bugs": {
"url": "https://github.com/gre/bezier-easing-editor/issues"
},
"homepage": "https://github.com/gre/bezier-easing-editor",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0"
},
"dependencies": {
"bezier-easing": "^2.0.3",
"prop-types": "^15.5.10",
"uncontrollable": "^4.1.0"
}
}