forked from nitin42/animate-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·97 lines (97 loc) · 2.71 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
{
"name": "animate-components",
"version": "1.1.7",
"description": "Elemental components for animations in React",
"keywords": [
"react",
"keyframes",
"animate",
"high order component",
"composed components",
"animations",
"styled",
"renderer",
"block",
"renderer",
"styled",
"custom elements"
],
"main": "index.js",
"scripts": {
"flow": "flow --quiet",
"prebuild": "rm -rf build",
"test": "jest --watch",
"coverage": "jest --coverage",
"builder": "node ./scripts/check.js",
"start": "./node_modules/.bin/webpack-dev-server --watch --open --config ./starter/webpack.config.js",
"lint": "./node_modules/.bin/eslint ./src",
"build": "babel src -d build",
"webpack:build": "NODE_ENV=production ./node_modules/.bin/webpack"
},
"files": [
"build",
"index.js"
],
"author": "Nitin Tulswani <[email protected]>",
"license": "MIT",
"dependencies": {
"html-tags": "^1.1.1",
"prop-types": "^15.5.8",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"styled-components": "^1.4.4"
},
"jest": {
"testEnvironment": "node"
},
"homepage": "https://github.com/nitin42/animate-components",
"devDependencies": {
"aphrodite": "^1.2.1",
"autoprefixer": "^6.7.7",
"babel-eslint": "^7.2.3",
"babel-jest": "^19.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-es2015-modules-umd": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babili": "^0.0.12",
"chalk": "^1.1.3",
"compression-webpack-plugin": "^0.4.0",
"css-loader": "^0.28.0",
"cssnano": "^3.10.0",
"debug": "^2.6.8",
"enzyme": "^2.8.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.1",
"eslint-plugin-flowtype": "^2.33.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.0.1",
"extract-text-webpack-plugin": "^2.1.0",
"flow-bin": "^0.42.0",
"glamor": "^2.20.25",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^3.1.1",
"gulp-concat": "^2.6.1",
"gulp-header": "^1.8.8",
"gulp-postcss": "^6.4.0",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.8",
"gutil": "^1.6.4",
"html-webpack-plugin": "^2.28.0",
"html-webpack-template": "^6.0.1",
"jest": "^19.0.2",
"jest-styled-components": "^2.0.0",
"jsdoc": "^3.4.3",
"postcss-loader": "^1.3.3",
"react-addons-test-utils": "^15.5.1",
"react-dev-utils": "^1.0.1",
"react-hot-loader": "^1.3.1",
"react-test-renderer": "^15.5.4",
"sinon": "^2.2.0",
"style-loader": "^0.16.1",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
}
}