-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
85 lines (85 loc) · 2.42 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
{
"name": "jss-theme-reactor-build",
"description": "Powerful theming layer for use with the JSS library (CSS in JS)",
"private": true,
"version": "0.11.1",
"scripts": {
"build": "babel src --ignore *.spec.js --out-dir build && babel-node scripts/copy-files.js",
"build-publish": "npm run build && cd build && npm publish && cd .. && npm run clean",
"clean": "rimraf build",
"flow": "flow --show-all-errors",
"lint": "eslint src test/integration && echo \"eslint: no lint errors\"",
"test": "cross-env NODE_ENV=test mocha",
"test:coverage": "cross-env NODE_ENV=test BABEL_ENV=coverage nyc mocha && nyc report -r lcovonly",
"test:watch": "cross-env NODE_ENV=test mocha -w"
},
"author": "Nathan Marks <[email protected]> (http://nathanmarks.io)",
"keywords": [
"jss",
"css",
"theme",
"theming",
"js styles",
"css in js",
"react"
],
"repository": {
"type": "git",
"url": "https://github.com/nathanmarks/jss-theme-reactor.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/nathanmarks/jss-theme-reactor/issues"
},
"dependencies": {
"jss": "^7.0.3",
"jss-preset-default": "^2.0.0",
"jss-vendor-prefixer": "^5.1.0",
"murmurhash-js": "^1.0.0"
},
"devDependencies": {
"app-module-path": "^2.1.0",
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.7",
"babel-plugin-istanbul": "^4.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-1": "^6.16.0",
"babel-runtime": "^6.18.0",
"benchmark": "^2.1.2",
"chai": "^3.5.0",
"common-tags": "^1.4.0",
"cross-env": "^3.1.3",
"enzyme": "^2.5.1",
"eslint": "^3.9.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-mocha": "^4.7.0",
"eslint-plugin-react": "^6.6.0",
"flow-bin": "^0.37.0",
"fs-extra": "^1.0.0",
"jsdom": "^9.8.3",
"mocha": "^3.1.2",
"nyc": "^10.1.2",
"react": "^15.3.2",
"react-addons-test-utils": "^15.3.2",
"react-dom": "^15.3.2",
"rimraf": "^2.5.4",
"sinon": "^1.17.6",
"webpack": "^2.1.0-beta.13"
},
"nyc": {
"include": [
"src/**/*.js"
],
"exclude": [
"**/*.spec.js"
],
"sourceMap": false,
"instrument": false
}
}