forked from ihenvyr/react-styled-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.57 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": "react-styled-grid",
"version": "1.5.1",
"description": "Grid system based on styled-components and foundation grid",
"main": "dist/Grid.js",
"files": [
"dist",
"docs",
"src",
"LICENSE",
"README.md",
"webpack.config.js",
"yarn.lock"
],
"scripts": {
"start": "webpack-dev-server",
"test": "mocha --compilers js:babel-core/register src/Grid.spec.js -w",
"build": "cross-env NODE_ENV=production webpack -p",
"prepublish": "rimraf dist && babel --out-dir dist --ignore *.spec.js src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ihenvyr/react-styled-grid.git"
},
"keywords": [
"react",
"styled-components",
"responsive",
"grid",
"foundation"
],
"author": "Henry C. Cruz <ihenvyr@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ihenvyr/react-styled-grid/issues"
},
"homepage": "https://github.com/ihenvyr/react-styled-grid#readme",
"dependencies": {
"styled-components": "v2.0.0-7"
},
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-es2015": "^6.24.0",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"chai": "^3.5.0",
"cross-env": "^3.2.4",
"mocha": "^3.2.0",
"react": "^15.4.2",
"react-addons-test-utils": "^15.4.2",
"react-dom": "^15.4.2",
"rimraf": "^2.6.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2"
},
"babel": {
"presets": [
"es2015",
"stage-0",
"react"
],
"plugins": []
}
}