This repository has been archived by the owner on Aug 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
65 lines (65 loc) · 1.66 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
{
"name": "@rebass/grid",
"version": "6.1.0",
"description": "Responsive React grid system built with styled-system, with support for styled-components and emotion",
"main": "dist/index.js",
"scripts": {
"prepare": "rm -rf dist && babel src -d dist && npm run emotion",
"test": "jest",
"emotion": "NODE_ENV=emotion babel src -d dist/emotion",
"logo": "npx repng docs/logo.js -w 768 -h 768 -d docs -f logo.png"
},
"keywords": [
"react",
"styled-components",
"styled-system",
"grid",
"flexbox",
"layout",
"css"
],
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"@styled-system/prop-types": "^5.0.18",
"styled-system": "^5.0.18"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-react": "^7.0.0",
"@emotion/core": "^10.0.15",
"@emotion/styled": "^10.0.15",
"babel-jest": "^24.8.0",
"babel-plugin-styled-components": "^1.10.6",
"babel-plugin-transform-rename-import": "^2.3.0",
"jest": "^24.8.0",
"jest-emotion": "^10.0.14",
"jest-styled-components": "^6.3.3",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"styled-components": "^4.3.2"
},
"jest": {
"roots": [
"<rootDir>/tests/"
],
"testMatch": [
"**/tests/**/*.js"
]
},
"directories": {
"doc": "docs",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rebassjs/grid.git"
},
"bugs": {
"url": "https://github.com/rebassjs/grid/issues"
},
"homepage": "https://github.com/rebassjs/grid#readme"
}