-
-
Notifications
You must be signed in to change notification settings - Fork 399
/
package.json
129 lines (129 loc) · 3.99 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "jss",
"description": "A lib for generating Style Sheets with JavaScript.",
"version": "9.4.0",
"author": {
"name": "Oleg Slobodskoi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:cssinjs/jss.git"
},
"keywords": [
"jss",
"style",
"sheet",
"stylesheet",
"css",
"components",
"composable",
"css in js",
"css-in-js"
],
"license": "MIT",
"main": "./lib/index.js",
"engines": {
"node": ">=4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.20.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.9",
"babel-plugin-inline-version": "^1.0.2",
"babel-plugin-rewire": "^1.0.0",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.8.0",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-plugin-transform-inline-environment-variables": "^6.8.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"codecov": "^1.0.1",
"common-tags": "^1.4.0",
"cross-env": "^3.1.3",
"css.escape": "^1.5.1",
"detect-browser": "^1.5.0",
"es5-shim": "^4.5.9",
"eslint": "^3.11.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-jss": "^3.0.0",
"eslint-plugin-flowtype": "^2.29.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"expect.js": "^0.3.1",
"flow-bin": "^0.57.3",
"flow-copy-source": "^1.1.0",
"json-loader": "^0.5.4",
"jss-cache": "^2.0.0",
"jss-camel-case": "^5.0.0",
"jss-compose": "^4.0.0",
"jss-default-unit": "^7.0.0",
"jss-expand": "^4.0.0",
"jss-extend": "^5.0.0",
"jss-global": "^2.0.0",
"jss-isolate": "^4.0.0",
"jss-nested": "^5.0.0",
"jss-props-sort": "^5.0.0",
"jss-vendor-prefixer": "^6.0.0",
"karma": "^1.3.0",
"karma-benchmark": "^0.6.0",
"karma-benchmark-reporter": "^0.1.1",
"karma-browserstack-launcher": "^1.1.1",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lint-staged": "^3.2.2",
"mocha": "^3.2.0",
"pre-commit": "^1.1.3",
"rimraf": "^2.5.4",
"size-limit": "^0.2.0",
"webpack": "^2.3.3",
"zen-observable": "^0.6.0"
},
"scripts": {
"all": "npm run lint && npm run flow && npm run test && npm run build && npm run size",
"build": "npm run clean && npm run build:lib && npm run build:max && npm run build:min && npm run build:tests",
"build:lib": "babel src --out-dir lib && npm run flow:copy-src",
"build:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss.js",
"build:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss.min.js",
"build:tests": "cross-env NODE_ENV=test webpack tests/index.js tmp/tests.js",
"clean": "rimraf '{lib,dist,tmp}/*'",
"flow": "flow --show-all-errors",
"flow:copy-src": "flow-copy-source -i './src/**' src lib",
"lint": "eslint ./src ./tests ./benchmark ./*.js && npm run flow",
"lint:staged": "lint-staged && npm run flow",
"prepublishOnly": "npm run all",
"test": "cross-env NODE_ENV=test karma start --single-run",
"test:watch": "cross-env NODE_ENV=test karma start",
"posttest": "[ -z \"$TRAVIS\" ] || codecov",
"codecov": "codecov",
"bench": "cross-env BENCHMARK=true karma start --single-run",
"size": "size-limit 7.1KB dist/jss.js"
},
"dependencies": {
"is-in-browser": "^1.1.3",
"symbol-observable": "^1.1.0",
"warning": "^3.0.0"
},
"files": [
"dist",
"lib",
"flow-typed",
"readme.md",
"changelog.md",
"LICENSE"
],
"lint-staged": {
"./src/**/*.js ./tests/**/*.js ./benchmark/**/*.js ./*.js": [
"eslint",
"git add"
]
},
"pre-commit": "lint:staged"
}