-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
79 lines (79 loc) · 2.68 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-imation",
"version": "0.5.3",
"description": "functional tweening and animation for react",
"main": "./src/index",
"repository": {
"type": "git",
"url": "https://github.com/gilbox/react-imation.git"
},
"homepage": "https://github.com/gilbox/react-imation/blob/latest/README.md",
"bugs": "https://github.com/gilbox/react-imation/issues",
"scripts": {
"build-global": "rm -rf build/global && NODE_ENV=production webpack src/index.js build/global/react-imation.js && NODE_ENV=production COMPRESS=1 webpack src/index.js build/global/react-imation.min.js && echo \"gzipped, the global build is `gzip -c build/global/react-imation.min.js | wc -c` bytes\"",
"build-npm": "rm -rf build/npm && babel -d build/npm ./src --stage 0 && cp README.md build/npm && find -X build/npm -type d -name __tests__ | xargs rm -rf && node -p 'p=require(\"./package-npm\");JSON.stringify(p,null,2)' > build/npm/package.json",
"examples": "rm -rf examples/js && webpack-dev-server --config examples/webpack.config.js --content-base examples",
"examples-fast": "rm -rf examples/js && NODE_ENV=production webpack-dev-server --config examples/webpack.config.js --content-base examples",
"examples-build": "rm -rf examples/js && webpack --config examples/webpack.build.config.js",
"test": "jsxhint . && karma start",
"publish": "npm publish ./build/npm",
"prepush": "npm run examples-build"
},
"authors": [
"Gil Birman"
],
"license": "MIT",
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.8.22",
"babel-loader": "^5.3.2",
"bundle-loader": "^0.5.4",
"classnames": "^2.1.3",
"elegant-react": "^0.2.2",
"expect": "^1.1.0",
"functional-easing": "^1.0.8",
"gsap": "^1.16.1",
"jsxhint": "^0.12.1",
"karma": "^0.12.28",
"karma-chrome-launcher": "^0.1.7",
"karma-cli": "0.0.4",
"karma-firefox-launcher": "^0.1.3",
"karma-mocha": "^0.1.10",
"karma-sourcemap-loader": "^0.3.2",
"karma-webpack": "^1.3.1",
"lodash": "^3.10.1",
"mocha": "^2.0.1",
"react": "^0.14.0",
"react-derive": "^0.1.1",
"react-dom": "^0.14.0",
"react-motion": "^0.3.0",
"react-stateful-stream": "^0.3.0",
"react-three": "0.7.1",
"react-track": "^0.2.1",
"rekapi": "^1.4.4",
"rf-changelog": "^0.4.0",
"rx": "2.3.18",
"three": "^0.71.0",
"updeep": "^0.10.1",
"webpack": "^1.4.13",
"webpack-dev-server": "^1.6.6"
},
"peerDependencies": {
},
"dependencies": {
"raf": "^3.1.0"
},
"tags": [
"react",
"react-native",
"animation"
],
"keywords": [
"react",
"react-native",
"react-component",
"animation",
"tweening",
"easing"
]
}