-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
63 lines (63 loc) · 2.16 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
{
"name": "react-track",
"version": "0.4.3",
"description": "react element tracking and animation",
"main": "src",
"repository": {
"type": "git",
"url": "https://github.com/gilbox/react-track.git"
},
"homepage": "https://github.com/gilbox/react-track/blob/master/README.md",
"bugs": "https://github.com/gilbox/react-track/issues",
"scripts": {
"build-global": "rm -rf build/global && NODE_ENV=production webpack src/index.js build/global/react-track.js && NODE_ENV=production COMPRESS=1 webpack src/index.js build/global/react-track.min.js && echo \"gzipped, the global build is `gzip -c build/global/react-track.min.js | wc -c` bytes\"",
"build-npm": "rm -rf build/npm && babel -d build/npm/lib ./src --stage 0 && cp README.md build/npm && cp tracking-formulas.js build/npm && find -X build/npm/lib -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-build": "rm -rf examples/js && webpack --config examples/webpack.build.config.js",
"publish": "npm publish ./build/npm",
"prepush": "npm run examples-build"
},
"authors": [
"Gil Birman"
],
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-1": "^6.5.0",
"bundle-loader": "^0.5.4",
"chokidar": "^1.6.0",
"classnames": "^2.1.3",
"functional-easing": "^1.0.8",
"jsxhint": "^0.12.1",
"lodash": "^3.10.1",
"prop-types": "^15.5.8",
"raf": "^3.1.0",
"react": "^0.14 || ^15",
"react-dom": "^0.14 || ^15",
"react-imation": "^0.4.1",
"webpack": "^1.4.13",
"webpack-dev-server": "^1.6.6"
},
"peerDependencies": {
"react": "^0.14 || ^15",
"react-dom": "^0.14 || ^15"
},
"dependencies": {
"raf": "^3.1.0"
},
"tags": [
"react",
"scroll"
],
"keywords": [
"react",
"react-component",
"scroll",
"scrolling",
"animation"
]
}