-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 998 Bytes
/
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
{
"name": "react-flex-component",
"version": "0.8.8",
"description": "css flexbox component for ReactJS",
"main": "lib/flex.js",
"files": [
"lib"
],
"directories": {
"example": "example"
},
"scripts": {
"build": "babel flex.js --out-dir lib --optional es7.classProperties",
"prepublish": "npm run build",
"example": "browserify example/source.jsx -o example/build.js -t [ babelify --optional es7.classProperties ]"
},
"repository": {
"type": "git",
"url": "https://github.com/aarongoin/react-flex-component"
},
"keywords": [
"react-component",
"react",
"flexbox",
"css"
],
"author": "Aaron Goin",
"license": "MIT",
"bugs": {
"url": "https://github.com/aarongoin/react-flex-component/issues"
},
"homepage": "https://github.com/aarongoin/react-flex-component",
"dependencies": {
"react": "^15.0.2"
},
"devDependencies": {
"babel": "^5.5.5",
"babelify": "^6.1.2",
"browserify": "^9.0.3"
}
}