-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.16 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.16 KB
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
{
"name": "react-css-grid",
"version": "2.0.0-0",
"description": "React layout component based on CSS Grid Layout and built with styled-components",
"main": "dist/index.js",
"scripts": {
"prepublish": "babel src -d dist",
"start": "webpack-dev-server",
"build": "webpack -p",
"test": "nyc ava"
},
"keywords": [
"react",
"react-component",
"styled-components",
"layout",
"css-grid",
"grid",
"css"
],
"author": "Brent Jackson",
"license": "MIT",
"dependencies": {
"prop-types": "^15.5.10",
"styled-components": "^2.1.2"
},
"devDependencies": {
"ava": "^0.22.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"grid-styled": "^2.0.0-10",
"nyc": "^11.1.0",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-live": "^1.7.0",
"react-test-renderer": "^15.6.1",
"react-x-ray": "^1.0.0-2",
"refunk": "^1.0.0-2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"ava": {
"require": [
"babel-register"
],
"babel": "inherit"
}
}