-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
56 lines (56 loc) · 1.45 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
49
50
51
52
53
54
55
56
{
"name": "react-tween",
"version": "0.1.15",
"description": "Tween animation for React components",
"repository": "clari/react-tween",
"license": "MIT",
"main": "lib/index",
"files": [
"dist",
"lib"
],
"keywords": [
"react",
"react-component",
"animation",
"tween",
"motion",
"transition"
],
"scripts": {
"start": "webpack-dev-server --config webpack.dev.config.js",
"build": "rm -rf dist && NODE_ENV=production webpack --config webpack.build.config.js",
"prepublish": "rm -rf lib && babel src --out-dir lib --only tween,index && npm run build"
},
"dependencies": {
"d3-ease": "^1.0.0",
"d3-interpolate": "^1.0.0",
"d3-timer": "^1.0.0"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0"
},
"devDependencies": {
"autoprefixer": "^6.0.0",
"babel-cli": "^6.0.0",
"babel-core": "^6.0.0",
"babel-loader": "^6.0.0",
"babel-plugin-transform-decorators-legacy": "^1.0.0",
"babel-polyfill": "^6.0.0",
"babel-preset-latest": "^6.0.0",
"babel-preset-react": "^6.0.0",
"babel-preset-react-hmre": "^1.0.0",
"babel-preset-stage-0": "^6.0.0",
"classnames": "^2.0.0",
"css-loader": "^0.25.0",
"d3-scale": "^1.0.3",
"node-sass": "^3.0.0",
"postcss-loader": "^1.0.0",
"react": "^15.0.0",
"react-dom": "^15.0.0",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.0",
"webpack": "^1.0.0",
"webpack-dev-server": "^1.0.0"
}
}