forked from rebassjs/rebass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
96 lines (96 loc) · 2.43 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
{
"name": "rebass",
"version": "2.0.1",
"description": "Flexible & functional React design system, built with styled-system",
"main": "dist/index.js",
"sideEffects": false,
"scripts": {
"prepare": "babel src -d dist && npm run emotion && ./docs/_build.js",
"emotion": "NODE_ENV=emotion babel src -d dist/emotion",
"docs": "./docs/_build.js",
"cover": "jest --coverage --coverageReporters html lcov && codecov",
"test": "jest",
"size": "bundlesize",
"start": "x0 docs -p 9999",
"build": "x0 build docs -d site",
"svg": "scrs docs/Logo.js --svg > docs/logo.svg",
"card": "repng docs/Card.js -w 1024 -h 512 -d docs -f card.png"
},
"keywords": [
"components",
"react",
"react-component",
"ui",
"design-system",
"styled-system",
"styled-components",
"presentational",
"stateless",
"functional"
],
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"chroma-js": "^1.3.6",
"grid-styled": "^4.2.0",
"prop-types": "^15.6.0",
"styled-system": "^2.3.1",
"system-components": "^2.2.1"
},
"devDependencies": {
"@compositor/kit": "^1.0.43",
"@compositor/kit-snapshot": "^1.0.24",
"@compositor/x0": "^6.0.2",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-rename-import": "^2.2.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"bundlesize": "^0.17.0",
"codecov": "^3.0.0",
"emotion": "^9.2.3",
"jest": "^23.1.0",
"jest-styled-components": "^5.0.1",
"lodash.sortby": "^4.7.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-emotion": "^9.2.3",
"react-test-renderer": "^16.2.0",
"refunk": "^3.0.1",
"repng": "^3.0.0",
"scrs": "^1.1.0",
"styled-components": "^3.3.2",
"system-docs": "^1.0.0-1"
},
"peerDependencies": {
"styled-components": ">=2.0 || >= 3.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jxnblk/rebass.git"
},
"bugs": {
"url": "https://github.com/jxnblk/rebass/issues"
},
"homepage": "https://github.com/jxnblk/rebass",
"jest": {
"roots": [
"<rootDir>/test/"
],
"testMatch": [
"**/test/**/*.js"
]
},
"bundlesize": [
{
"path": "./dist/*.js",
"maxSize": "2 kB"
}
],
"x0": {
"title": "Rebass",
"template": "./docs/_template.js",
"basename": "/rebass"
}
}