-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.62 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.62 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
52
53
54
55
56
57
58
{
"name": "@sorosora/grid",
"version": "1.1.4",
"description": "grid system for [styled-components](https://github.com/styled-components/styled-components).",
"main": "dist/grid.cjs.js",
"module": "dist/grid.esm.js",
"browser": "dist/grid.umd.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build:dist",
"prebuild:dist": "rm -rf dist/*",
"build:dist": "rollup -c",
"dev": "npm run build && parcel index.html -d build"
},
"keywords": [
"react",
"styled-components",
"styled-system",
"grid",
"flexbox"
],
"author": "sorosora",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-external-helpers": "^7.2.0",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@sorosora/styled-breakpoints": "^5.0.1",
"babel-plugin-styled-components": "^1.10.0",
"get-value": "^3.0.1",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"rollup-plugin-babel": "^4.2.0",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"styled-components": "^4.1.3"
},
"peerDependencies": {
"styled-components": ">= 3",
"@sorosora/styled-breakpoints": ">= 5"
},
"directories": {
"src": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sorosora/grid.git"
},
"bugs": {
"url": "https://github.com/sorosora/grid/issues"
},
"homepage": "https://github.com/sorosora/grid#readme",
"dependencies": {}
}