-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
101 lines (101 loc) · 2.49 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
{
"name": "theming",
"version": "3.3.0",
"description": "Unified CSSinJS theming solution for React",
"main": "dist/theming.cjs.js",
"module": "dist/theming.esm.js",
"typings": "./src/index.d.ts",
"files": [
"src",
"dist"
],
"engines": {
"node": ">=8"
},
"scripts": {
"lint": "eslint .",
"flow": "flow check --max-warnings 0",
"ts-check": "tsc",
"test": "ava",
"tdd": "yarn test --watch",
"coverage": "nyc yarn test",
"coveralls": "yarn coverage && coveralls < coverage/lcov.info",
"prebuild": "rimraf dist",
"build": "rollup -c",
"prepare": "yarn build",
"match-snapshot": "SNAPSHOT=match rollup -c"
},
"nyc": {
"include": [
"src"
],
"exclude": [
"src/*test*"
],
"all": true,
"cache": true,
"reporter": [
"lcov",
"text"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cssinjs/theming.git"
},
"keywords": [
"react",
"theme",
"theming",
"styled-components",
"jss",
"cssinjs",
"css-in-js"
],
"author": "Vladimir Starkov <[email protected]> (https://iamstarkov.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/cssinjs/theming/issues"
},
"homepage": "https://github.com/cssinjs/theming#readme",
"devDependencies": {
"@babel/cli": "^7.1.0",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"@types/react": "^16.4.18",
"ava": "^1.0.0-rc.1",
"babel-plugin-dev-expression": "^0.2.1",
"coveralls": "^3.0.0",
"eslint": "^5.8.0",
"eslint-config-jss": "^5.0.1",
"eslint-config-prettier": "^4.2.0",
"flow-bin": "^0.131.0",
"nyc": "^13.1.0",
"react": "^16.8.0",
"react-test-renderer": "^16.8.0",
"rimraf": "^2.6.1",
"rollup": "^0.66.6",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-node-resolve": "^3.4.0",
"rollup-plugin-replace": "^2.1.0",
"rollup-plugin-size-snapshot": "^0.7.0",
"rollup-plugin-uglify": "^6.0.0",
"sinon": "^7.1.1",
"typescript": "^3.1.6"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"prop-types": "^15.5.8",
"react-display-name": "^0.2.4",
"tiny-warning": "^1.0.2"
},
"peerDependencies": {
"react": ">=16.3"
}
}