forked from steadicat/react-rebound
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "react-rebound",
"version": "0.7.0",
"description": "A React component that animates its child using springs.",
"author": "Stefano J. Attardi (http://github.com/steadicat)",
"main": "index.js",
"jsnext:main": "index.es2015.js",
"scripts": {
"lint": "eslint src",
"build": "./node_modules/.bin/rollup -c -f es -o index.es2015.js && ./node_modules/.bin/rollup index.es2015.js -f umd -n ReactRebound --globals stylistic:Stylistic -o index.js",
"prepublish": "npm run build"
},
"homepage": "https://github.com/steadicat/react-rebound",
"repository": {
"type": "git",
"url": "[email protected]:steadicat/react-rebound.git"
},
"bugs": {
"url": "https://github.com/steadicat/react-rebound/issues"
},
"keywords": [
"react",
"animation",
"animate",
"springs",
"rebound",
"motion"
],
"dependencies": {
"rebound": "^0.0.13",
"stylistic": "^0.2.4"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0 || >=16.0.0-alpha",
"react-dom": "^^0.14.0 || ^15.0.0 || >=16.0.0-alpha"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"eslint": "^3.14.1",
"eslint-plugin-babel": "^4.0.1",
"eslint-plugin-react": "^6.9.0",
"raf": "^3.3.0",
"rollup": "^0.41.4",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0"
},
"license": "MIT"
}