-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
58 lines (58 loc) · 1.34 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
{
"name": "jss-repl",
"description": "JSS Repl",
"version": "5.3.0",
"private": true,
"author": {
"name": "Oleg Slobodskoi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:cssinjs/repl.git"
},
"keywords": [
"jss",
"style",
"sheet",
"stylesheet",
"css",
"components",
"composable"
],
"license": "MIT",
"main": "./lib/index.js",
"engines": {
"node": ">=8"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-eslint": "^7.1.0",
"babel-loader": "^6.2.2",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"es5-shim": "4.5.9",
"eslint": "^3.9.0",
"eslint-config-airbnb": "^12.0.0",
"eslint-config-jss": "^2.4.0",
"eslint-plugin-import": "^2.0.1",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"json-loader": "^0.5.4",
"webpack": "^1.12.2"
},
"dependencies": {
"brace": "^0.9.0",
"jss": "^10.0.0",
"jss-preset-default": "^10.0.0"
},
"scripts": {
"all": "npm run lint && npm run build",
"clean": "rm -fr ./dist/*",
"build": "npm run clean && npm run build:min",
"build:min": "NODE_ENV=production webpack src/index.js dist/repl.js",
"lint": "eslint ./src",
"postversion": "npm run all"
}
}