-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.04 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
{
"name": "bendy",
"version": "0.2.4",
"description": "A grid system built for React apps inspired by React Flexbox Grid and Flexbox Grid Sass.",
"main": "lib/index.js",
"author": "Brett Hayes",
"license": "MIT",
"scripts": {
"clean": "rm -rf ./lib",
"build": "babel src --out-dir lib; cp ./src/style.scss ./lib/style.scss;",
"prebuild": "npm run clean;",
"prepublish": "npm run build;"
},
"repository": {
"type": "git",
"url": "git://github.com/bretthayes/bendy.git"
},
"bugs": {
"url": "https://github.com/bretthayes/bendy/issues"
},
"keywords": [
"bendy",
"react",
"flexbox",
"sass",
"css modules",
"grid",
"system",
"webpack",
"simple"
],
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0"
},
"peerDependencies": {
"classnames": ">=2.1.2",
"react": "^0.14.3 || ^15.0.0 || ^16.0.0"
},
"dependencies": {
"prop-types": "^15.6.0"
}
}