-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
72 lines (72 loc) · 2.04 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
{
"name": "aphrodite-jss",
"description": "Aphrodite-like API on top of JSS.",
"version": "2.1.0",
"scripts": {
"all": "npm run lint && npm run build",
"clean": "rm -fr ./lib/*",
"build": "npm run clean && npm run build:lib && npm run build:max && npm run build:min",
"build:lib": "cross-env babel src --out-dir lib",
"build:max": "cross-env NODE_ENV=development webpack src/index.js dist/aphrodite-jss.js",
"build:min": "cross-env NODE_ENV=production webpack src/index.js dist/aphrodite-jss.min.js",
"lint": "eslint ./src ./tests ./benchmark ./*.js",
"lint:staged": "lint-staged",
"prepublish": "npm run all",
"test": "cross-env BABEL_ENV=test jest ./test"
},
"author": {
"name": "Oleg Slobodskoi",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:cssinjs/aphrodite-jss.git"
},
"keywords": [
"jss",
"cssinjs",
"css-in-js",
"aphrodite",
"react"
],
"license": "MIT",
"main": "./lib/index.js",
"engines": {
"node": ">=4.0.0"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.5.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.0.0",
"babel-plugin-inline-version": "^1.0.2",
"babel-plugin-transform-es3-member-expression-literals": "^6.8.0",
"babel-plugin-transform-es3-property-literals": "^6.22.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^5.0.0",
"es5-shim": "^4.3.1",
"eslint": "^3.0.1",
"eslint-config-airbnb": "^13.0.0",
"eslint-config-jss": "^3.0.0",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.5.0",
"jest": "^23.4.1",
"json-loader": "^0.5.4",
"lint-staged": "^3.4.2",
"pre-commit": "^1.2.0",
"webpack": "^2.5.1"
},
"dependencies": {
"jss": "^8.1.0",
"jss-preset-default": "^3.0.0",
"murmurhash-js": "^1.0.0"
},
"lint-staged": {
"./src ./tests ./benchmark ./*.js": [
"eslint",
"git add"
]
}
}