-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 1.99 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 1.99 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
{
"name": "theming",
"version": "3.2.0",
"description": "Unified CSSinJS theming solution for React",
"main": "dist/theming.cjs.js",
"module": "dist/theming.esm.js",
"typings": "./src/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=12"
},
"scripts": {
"ts-check": "tsc",
"test": "ava",
"prebuild": "rimraf dist",
"build": "tsdx build",
"format": "prettier src/* --write"
},
"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": {
"@rollup/plugin-typescript": "^2.1.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/prop-types": "^15.7.2",
"@types/react": "^16.9.2",
"@types/react-test-renderer": "^16.9.1",
"@types/sinon": "^7.5.1",
"ava": "3.0.0",
"react": "^16.8.0",
"react-test-renderer": "^16.8.0",
"rimraf": "^2.6.1",
"rollup": "^0.66.6",
"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-typescript": "^1.0.1",
"rollup-plugin-uglify": "^6.0.0",
"sinon": "^7.1.1",
"ts-node": "^8.6.2",
"tsdx": "^0.12.1",
"typescript": "^3.7.4"
},
"dependencies": {
"hoist-non-react-statics": "^3.3.0",
"react-display-name": "^0.2.4",
"tiny-warning": "^1.0.2"
},
"peerDependencies": {
"react": ">=16.7"
}
}