-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
51 lines (51 loc) · 1.37 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
{
"name": "jss-nested",
"description": "JSS plugin that enables support for nested selectors",
"version": "0.2.0",
"author": {
"name": "Oleg Slobodskoi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:jsstyles/jss-nested.git"
},
"keywords": [
"jss",
"plugin",
"nested",
"nesting"
],
"engines": {},
"scripts": {
"all": "npm run lint && npm run build",
"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": "NODE_ENV=development webpack src/index.js dist/jss-nested.js",
"build:min": "NODE_ENV=production webpack src/index.js dist/jss-nested.min.js",
"lint": "eslint ./src",
"prepublish": "npm run all && git push --tags"
},
"license": "MIT",
"main": "./lib/index.js",
"devDependencies": {
"babel": "^5.6.14",
"babel-core": "^5.6.20",
"babel-eslint": "^3.1.23",
"babel-loader": "^5.3.1",
"eslint": "^0.24.1",
"eslint-config-airbnb": "^0.0.6",
"eslint-config-jss": "^0.1.0",
"eslint-plugin-react": "^2.7.0",
"jss": "^2.3.4",
"opener": "^1.4.1",
"qunitjs": "1.15.0",
"rimraf": "^2.4.3",
"webpack": "^1.11.0"
},
"peerDependencies": {
"jss": "^2.3.4"
}
}