-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
62 lines (62 loc) · 1.75 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
{
"name": "reactcss",
"version": "1.2.2",
"description": "Bringing Classes to Inline Styles",
"author": "case <[email protected]>",
"main": "lib/index.js",
"scripts": {
"clean": "rm -rf lib && mkdir lib",
"lib": "npm run clean && babel src -d lib",
"test": "npm run unit-test -s && npm run eslint -s",
"unit-test": "node_modules/.bin/jest",
"tdd": "node_modules/.bin/jest --watchAll",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/casesandberg/reactcss"
},
"keywords": [
"react",
"reactcss"
],
"license": "MIT",
"dependencies": {
"lodash": "^4.0.1"
},
"devDependencies": {
"@case/eslint-config": "^0.1.4",
"babel": "^6.0.15",
"babel-cli": "^6.23.0",
"babel-core": "^6.1.2",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.0.1",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-es2015": "^6.1.18",
"babel-preset-react": "^6.1.18",
"babel-preset-stage-0": "^6.1.18",
"babel-register": "^6.9.0",
"css-loader": "^0.14.5",
"highlight.js": "^8.6.0",
"html-loader": "^0.3.0",
"install": "^0.4.0",
"jest": "^19.0.2",
"jsx-loader": "^0.13.2",
"markdown-loader": "^0.1.2",
"normalize.css": "^3.0.3",
"react": "^15.1.0",
"react-context": "0.0.3",
"react-dom": "^15.1.0",
"react-hot-loader": "^1.2.5",
"react-test-renderer": "^15.4.2",
"remarkable": "^1.6.0",
"require-dir": "^0.3.0",
"style-loader": "^0.12.3",
"webpack": "^1.8.11",
"webpack-dev-server": "^1.8.2"
}
}