forked from rebassjs/rebass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.13 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
{
"name": "rebass",
"version": "3.0.0",
"description": "React primitive UI components built with styled-system",
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"prepare": "npm run clean && babel src -d dist && npm run emotion",
"emotion": "NODE_ENV=emotion babel src -d emotion",
"clean": "rm -rf dist",
"start": "mdx-go docs",
"docs": "mdx-go build docs -d site",
"cover": "jest --coverage && npx codecov",
"test": "jest",
"size": "npx bundlesize"
},
"keywords": [
"components",
"react",
"react-component",
"ui",
"design-system",
"styled-system",
"styled-components",
"presentational",
"stateless",
"functional"
],
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"styled-system": "^3.1.11"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"@emotion/core": "^10.0.0",
"@emotion/styled": "^10.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-transform-rename-import": "^2.3.0",
"buble": "0.19.4",
"jest": "^23.6.0",
"jest-styled-components": "^6.2.2",
"mdx-go": "^2.0.0-31",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"react-test-renderer": "^16.6.3",
"styled-components": "^4.1.1"
},
"peerDependencies": {
"styled-components": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/rebassjs/rebass.git"
},
"bugs": {
"url": "https://github.com/rebassjs/rebass/issues"
},
"homepage": "https://github.com/rebassjs/rebass",
"jest": {
"testMatch": [
"**/test/**/*.js"
],
"setupTestFrameworkScriptFile": "jest-styled-components",
"coverageReporters": [
"html",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"coveragePathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"bundlesize": [
{
"path": "./dist/*.js",
"maxSize": "1.5 kB"
}
]
}