forked from rebassjs/rebass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.59 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
{
"name": "rebass",
"version": "2.0.0-0",
"description": "React UI component library & design system, built with styled-components and styled-system",
"main": "dist/index.js",
"scripts": {
"prepublish": "babel src -d dist",
"cover": "nyc report --reporter=html --reporter=lcov && codecov",
"test": "nyc ava"
},
"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": "^3.2.1",
"prop-types": "^15.6.0",
"styled-components": ">=2.0 || >=3.0",
"styled-system": "^2.1.1",
"system-components": "^2.0.2"
},
"devDependencies": {
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"codecov": "^3.0.0",
"nyc": "^11.4.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-test-renderer": "^16.2.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",
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"exclude": [
"test",
"docs",
"stories"
]
},
"x0": {
"cssLibrary": "styled-components"
}
}