forked from rebassjs/rebass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.69 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
{
"name": "rebass",
"version": "1.0.4",
"description": "Functional React UI component library, built with styled-components",
"main": "dist/index.js",
"scripts": {
"prepublish": "babel src -d dist",
"start": "start-storybook -p 8000 -c stories",
"storybook": "build-storybook -c stories -o docs/stories",
"cover": "nyc report --reporter=html --reporter=lcov && codecov",
"test": "nyc ava"
},
"keywords": [
"components",
"react",
"react-component",
"ui",
"styled-components",
"presentational",
"stateless",
"functional"
],
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"grid-styled": "^2.0.0-10",
"palx": "^1.0.2",
"prop-types": "^15.5.10",
"recompose": "^0.23.5",
"styled-components": "^2.1.2",
"styled-system": "^1.0.0-12",
"tag-hoc": "^1.0.0"
},
"devDependencies": {
"@storybook/addon-options": "^3.2.4",
"@storybook/react": "^3.2.4",
"ava": "^0.20.0",
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-preset-env": "^1.5.2",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.24.1",
"codecov": "^2.3.0",
"nyc": "^11.1.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"react-x-ray": "^1.0.0-2",
"refunk": "^1.0.0-2"
},
"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"
]
}
}