This repository has been archived by the owner on Aug 19, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 161
/
package.json
54 lines (54 loc) · 1.64 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
{
"name": "react-animations",
"version": "1.0.0",
"description": "A collection of animations for inline styles",
"main": "lib/index.js",
"scripts": {
"test:only": "jest",
"flow": "flow",
"lint": "eslint src",
"test": "npm run flow && npm run lint && npm run test:only",
"build": "babel src -d lib --ignore **/*.spec.js",
"dist": "npm run clean-dist && npm run build-dist && npm run build-dist-min",
"build-dist": "webpack",
"build-dist-min": "NODE_ENV=production webpack",
"prepublish": "npm run test && npm run build && npm run dist",
"clean-dist": "rimraf dist && mkdir dist",
"demo": "node demo/server"
},
"keywords": [
"react",
"animation",
"radium",
"css-in-js"
],
"author": "Brandon Dail <[email protected]>",
"license": "MIT",
"devDependencies": {
"aphrodite": "^0.5.0",
"babel-cli": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-jest": "^15.0.0",
"babel-loader": "^6.2.5",
"babel-plugin-transform-export-extensions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.8.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"eslint": "^3.6.0",
"eslint-config-formidable": "^2.0.1",
"eslint-plugin-filenames": "^1.1.0",
"eslint-plugin-flowtype": "^2.19.0",
"eslint-plugin-import": "^1.16.0",
"flow-bin": "^0.32.0",
"jest": "^15.1.1",
"jest-cli": "^15.1.1",
"radium": "^0.18.1",
"react": "^15.3.2",
"react-dom": "^15.3.2",
"rimraf": "^2.5.4",
"webpack": "^2.1.0-beta.25",
"webpack-dev-server": "^1.16.1"
},
"sideEffects": false
}