-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.77 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
{
"url": "https://github.com/mephju/classed-components",
"homepage": "https://github.com/mephju/classed-components",
"repository": {
"type": "git",
"url": "[email protected]:mephju/classed-components.git"
},
"bugs": {
"url": "https://github.com/mephju/classed-components/issues"
},
"email": "[email protected]",
"name": "classed-components",
"version": "0.4.1",
"description": "Like styled-components but for classes. Quickly create components based on CSS classes.",
"main": "lib/main.js",
"module": "src/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"test": "jest",
"build": "NODE_ENV=production webpack --color --progress",
"watch": "NODE_ENV=production webpack --color --progress --watch",
"build:dev": "NODE_ENV=development webpack --color --progress",
"watch:dev": "NODE_ENV=development webpack --color --progress --watch"
},
"author": "Kolja Kirchner",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-jest": "^18.0.0",
"babel-loader": "^6.4.1",
"babel-plugin-transform-class-properties": "^6.22.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-preset-env": "^1.3.3",
"babel-preset-es2015": "^6.22.0",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"compression-webpack-plugin": "^0.4.0",
"enzyme": "^2.7.1",
"jest": "^18.1.0",
"react": "^15.4.1",
"react-addons-test-utils": "^15.4.2",
"react-test-renderer": "^15.4.2",
"webpack": "^2.3.3"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0",
"prop-types": "^15.5.6"
},
"dependencies": {}
}