-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.47 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.47 KB
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
{
"name": "styled-jss",
"version": "0.6.2",
"description": "Styled Components on top of JSS.",
"main": "index.js",
"scripts": {
"clean": "rimraf lib/*",
"lint": "eslint 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 <kenzhaev.artur@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cssinjs/styled-jss/issues"
},
"homepage": "https://github.com/cssinjs/styled-jss#readme",
"dependencies": {
"is-react-prop": "^0.1.2",
"jss": "^7.1.1",
"jss-preset-default": "^2.0.0"
},
"peerDependencies": {
"react": ">=14"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.2.2",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.23.0",
"copyfiles": "^1.2.0",
"coveralls": "^2.13.0",
"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.44.2",
"flow-copy-source": "^1.1.0",
"flow-typed": "^2.0.0",
"jest": "^18.1.0",
"lint-staged": "^3.4.0",
"pre-commit": "^1.2.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-test-renderer": "^15.4.2",
"rimraf": "^2.6.1"
},
"lint-staged": {
"./src": [
"eslint",
"git add"
]
},
"pre-commit": [
"lint:staged",
"test"
],
"jest": {
"rootDir": "src"
}
}