-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
50 lines (50 loc) · 1.22 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
{
"name": "css-spring",
"version": "4.1.0",
"description": "Generate physics based css-keyframe animations",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/codepunkt/css-spring.git"
},
"author": "Christoph Werner <[email protected]>",
"license": "MIT",
"keywords": [
"react",
"css",
"animation",
"physics",
"spring"
],
"scripts": {
"build": "cross-env MINIFY_BUILD=1 webpack && cross-env webpack",
"test": "jest --coverage",
"start": "babel-node src/index.js",
"prepublishOnly": "cross-env npm run build"
},
"dependencies": {
"css-tree": "^1.0.0-alpha24",
"lodash": "^4.17.4",
"springer": "0.0.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-es2015": "^6.18.0",
"coveralls": "^2.13.1",
"cross-env": "^5.0.1",
"jest": "^21.2.1",
"lodash-webpack-plugin": "^0.11.4",
"prettier": "^1.5.2",
"webpack": "^3.1.0"
},
"jest": {
"roots": [
"src"
],
"cacheDirectory": "./node_modules/.cache/jest"
}
}