-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
109 lines (109 loc) · 3.21 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "data-driven-motion",
"version": "0.0.10",
"description": "Declarative animation in react.",
"jsnext:main": "dist/data-driven-motion.es.js",
"module": "dist/data-driven-motion.es.js",
"main": "dist/data-driven-motion.js",
"umd:main": "dist/data-driven-motion.umd.js",
"files": [
"dist"
],
"scripts": {
"build": "npm-run-all clean -p rollup -p minify:* -s size",
"clean": "rimraf dist",
"test": "standard src test && jest --coverage",
"test:watch": "jest --watch",
"rollup": "rollup -c",
"minify:cjs": "uglifyjs $npm_package_main -cm toplevel -o $npm_package_main -p relative --in-source-map ${npm_package_main}.map --source-map ${npm_package_main}.map",
"minify:umd": "uglifyjs $npm_package_umd_main -cm -o $npm_package_umd_main -p relative --in-source-map ${npm_package_umd_main}.map --source-map ${npm_package_umd_main}.map",
"size": "echo \"Gzipped Size: $(strip-json-comments --no-whitespace $npm_package_main | gzip-size)\"",
"release": "npm run test && npm run build && npm version patch && npm publish && git push --tags"
},
"dependencies": {
"prop-types": "^15.5.10",
"react-motion": "^0.4.7"
},
"peerDependencies": {
"react": "15.x"
},
"devDependencies": {
"babel-eslint": "^7.2.1",
"babel-jest": "^19.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"color-name": "^1.1.2",
"d3-array": "^1.1.1",
"d3-random": "^1.0.3",
"d3-scale": "^1.0.5",
"d3-shape": "^1.0.6",
"gh-pages": "^0.12.0",
"github-markdown-css": "^2.5.0",
"gzip-size-cli": "^2.0.0",
"html-loader": "^0.4.5",
"jest": "^20.0.1",
"markdown-loader": "^2.0.0",
"npm-run-all": "^4.0.2",
"open-color": "^1.5.1",
"preact": "^8.0.0",
"preact-compat": "^3.14.3",
"prettier": "^0.20.0",
"pretty-bytes-cli": "^2.0.0",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-addons-test-utils": "^15.5.1",
"react-crate": "^2.0.0",
"react-dom": "^15.5.4",
"react-loadable": "^3.0.1",
"react-motion": "^0.4.7",
"react-router-dom": "^4.0.0",
"react-svg-morph": "^0.1.10",
"react-test-renderer": "^15.5.4",
"rebass": "^0.4.0-beta.9",
"recompose": "^0.22.0",
"rgb-to-hsl": "0.0.3",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-commonjs": "^8.0.2",
"rollup-plugin-node-resolve": "^3.0.0",
"standard": "^10.0.2",
"strip-json-comments-cli": "^1.0.1",
"uglify-js": "^2.8.22"
},
"author": "Kye Hohenberger",
"homepage": "https://github.com/tkh44/data-driven-motion#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tkh44/data-driven-motion.git"
},
"keywords": [
"react",
"react-motion",
"animtion",
"react-animation",
"data",
"driven",
"motion"
],
"directories": {
"test": "test"
},
"bugs": {
"url": "https://github.com/tkh44/data-driven-motion/issues"
},
"eslintConfig": {
"extends": "standard",
"parser": "babel-eslint"
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist/",
"/demo/"
]
}
}