-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
107 lines (107 loc) · 2.98 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
{
"name": "styled-jss",
"version": "2.2.3",
"description": "Styled Components on top of JSS.",
"main": "index.js",
"scripts": {
"clean": "rimraf lib/*",
"lint": "eslint --ext .jsx,.js src",
"lint:staged": "lint-staged",
"flow": "flow check",
"test": "jest",
"test:watch": "npm test -- --watch",
"test:coverage": "npm test -- --coverage",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prebuild": "npm run clean && npm run flow && npm run lint && npm run test:coverage",
"build": "babel src --out-dir lib --ignore tests",
"postbuild": "npm run flow:csrc && copyfiles -e '**/tests/*' ./*.* LICENSE -a -f lib",
"flow:csrc": "flow-copy-source -i '**/tests/*' src lib",
"flow:typed": "flow-typed install",
"flow:stub": "flow-typed create-stub",
"release": "npm run build && git push --follow-tags && npm publish lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cssinjs/styled-jss.git"
},
"keywords": [
"jss",
"styled",
"react",
"styled-components",
"primitives"
],
"author": "lttb <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cssinjs/styled-jss/issues"
},
"homepage": "https://github.com/cssinjs/styled-jss#readme",
"dependencies": {
"deep-extend": "^0.5.0",
"is-observable": "^0.2.0",
"is-react-prop": "^1.0.0",
"jss": "^9.8.0",
"jss-preset-default": "^4.3.0",
"theming": "^1.3.0"
},
"peerDependencies": {
"react": ">=14"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.1",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.23.0",
"common-tags": "^1.4.0",
"copyfiles": "^1.2.0",
"coveralls": "^3.0.0",
"css.escape": "^1.5.1",
"enzyme": "^3.1.0",
"enzyme-adapter-react-16": "^1.0.1",
"enzyme-to-json": "^3.1.2",
"eslint": "^3.13.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-config-jss": "^3.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-react": "^6.10.3",
"flow-bin": "^0.56.0",
"flow-copy-source": "^1.2.1",
"flow-typed": "^2.1.5",
"jest": "^21.2.1",
"lint-staged": "^4.2.3",
"pre-commit": "^1.2.2",
"raf": "^3.4.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-test-renderer": "^16.0.0",
"rimraf": "^2.6.2",
"zen-observable": "^0.6.0"
},
"lint-staged": {
"*.{js,jsx}": [
"lint",
"git add",
"npm test -- -b --findRelatedTests"
]
},
"pre-commit": [
"lint:staged"
],
"jest": {
"rootDir": "src",
"coverageDirectory": "../coverage",
"setupFiles": [
"raf/polyfill",
"css.escape"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}