-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.79 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
{
"name": "jss-expand",
"description": "JSS plugin that adds possibility to write styles in more expanded way",
"version": "1.4.2",
"author": {
"name": "Pavel Davydov",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:typical000/jss-expand.git"
},
"keywords": [
"jss",
"plugin",
"expand"
],
"engines": {},
"scripts": {
"all": "npm run lint && npm run build",
"bench": "karma start --single-run",
"test": "opener ./test/index.html",
"build": "npm run clean && npm run build:lib && npm run build:max && npm run build:min",
"clean": "rimraf ./lib/*",
"build:lib": "babel src --out-dir lib",
"build:max": "cross-env NODE_ENV=development webpack src/index.js dist/jss-expand.js",
"build:min": "cross-env NODE_ENV=production webpack src/index.js dist/jss-expand.min.js",
"lint": "eslint ./src",
"prepublish": "npm run all && git push --tags"
},
"license": "MIT",
"main": "./lib/index.js",
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-eslint": "^6.1.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^2.0.0",
"eslint": "^2.13.1",
"eslint-config-airbnb": "^8.0.0",
"eslint-config-jss": "^1.1.0",
"eslint-plugin-import": "^1.10.2",
"eslint-plugin-jsx-a11y": "^1.5.5",
"eslint-plugin-react": "^5.2.2",
"json-loader": "^0.5.4",
"jss": "^5.1.0",
"karma": "^1.1.2",
"karma-benchmark": "^0.6.0",
"karma-benchmark-reporter": "^0.1.1",
"karma-chrome-launcher": "^1.0.1",
"karma-webpack": "^1.7.0",
"lodash.assign": "^4.1.0",
"opener": "^1.4.1",
"qunitjs": "^2.0.0",
"rimraf": "^2.5.3",
"webpack": "^1.13.1"
}
}