forked from AndyKelly/react-bodymovin
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.19 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
{
"name": "react-bodymovin",
"version": "2.0.0",
"description": "React wrapper for the bodymovin animation library",
"main": "lib/ReactBodymovin.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server",
"prepublish": "babel src --out-dir lib",
"lint": "standard --fix"
},
"keywords": [
"react",
"bodymovin"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Olical/react-bodymovin.git"
},
"author": "Oliver Caldwell",
"license": "ISC",
"dependencies": {
"bodymovin": "^4.13.0"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-2": "^6.13.0",
"css-loader": "^0.28.0",
"json-loader": "^0.5.4",
"postcss-loader": "^1.3.3",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-hot-loader": "^3.0.0-beta.6",
"standard": "^10.0.3",
"style-loader": "^0.16.1",
"webpack": "^2.1.0-beta.25",
"webpack-dev-server": "^2.1.0-beta.0"
},
"peerDependencies": {
"react": "*",
"react-dom": "*"
}
}