forked from casesandberg/reactcss
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.79 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.79 KB
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": "reactcss",
"version": "1.0.903",
"description": "Bringing Classes to Inline Styles",
"author": "case <[email protected]>",
"main": "lib/reactcss.js",
"repository": {
"type": "git",
"url": "https://github.com/casesandberg/reactcss"
},
"keywords": [
"react",
"reactcss"
],
"dependencies": {
"classnames": "^2.2.0",
"lodash.map": "^4.0.1",
"lodash.isstring": "^4.0.1",
"lodash.foreach": "^4.0.1",
"lodash.throttle": "^4.0.1",
"lodash.isobject": "^3.0.2",
"lodash.once": "^4.0.1",
"lodash.isplainobject": "^4.0.1",
"lodash.clonedeep": "^4.0.1",
"merge": "^1.2.0",
"object-assign": "^4.1.0"
},
"devDependencies": {
"babel": "^6.0.15",
"babel-core": "^6.1.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"babel-register": "^6.9.0",
"chai": "^2.2.0",
"coffee-jsx-loader": "^0.1.0",
"coffee-loader": "^0.7.2",
"coffee-react": "^2.1.2",
"coffee-script": "^1.9.1",
"css-loader": "^0.14.5",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.0",
"eslint-plugin-jsx-a11y": "^1.2.0",
"eslint-plugin-react": "^5.1.1",
"gulp": "^3.8.11",
"gulp-babel": "^6.1.1",
"gulp-cjsx": "^3.0.0",
"gulp-coffee": "^2.3.1",
"gulp-concat": "^2.5.2",
"gulp-mocha": "^2.0.1",
"gulp-uglify": "^1.2.0",
"gutil": "^1.6.4",
"highlight.js": "^8.6.0",
"html-loader": "^0.3.0",
"install": "^0.4.0",
"jsx-loader": "^0.13.2",
"markdown-loader": "^0.1.2",
"mocha": "^2.2.1",
"mocha-sinon": "^1.1.4",
"normalize.css": "^3.0.3",
"npm": "^3.5.0",
"react": "^15.1.0",
"react-addons-test-utils": "^15.1.0",
"react-context": "0.0.3",
"react-dom": "^15.1.0",
"react-hot-loader": "^1.2.5",
"react-map-styles": "git://github.com/casesandberg/react-map-styles",
"remarkable": "^1.6.0",
"require-dir": "^0.3.0",
"sinon": "^1.15.3",
"sinon-chai": "^2.8.0",
"style-loader": "^0.12.3",
"testdom": "^2.0.0",
"webpack": "^1.8.11",
"webpack-dev-server": "^1.8.2"
},
"peerDependencies": {
"react": "^0.14.8 || ^15.1.0",
"react-dom": "^0.14.8 || ^15.1.0"
},
"scripts": {
"lib": "gulp js:dist",
"test": "npm run unit-test",
"unit-test": "mocha test/** --compilers js:babel-register",
"tdd": "mocha test/** --compilers js:babel-register --watch",
"docs": "webpack-dev-server --config webpack.dev.js --port 2570",
"docs-dist": "webpack --config webpack.prod.js",
"dev": "npm run docs",
"prepublish": "npm run lib",
"eslint": "node_modules/.bin/eslint src/**/*.js",
"posttest": "npm run eslint"
},
"license": "MIT"
}