-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.18 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
{
"name": "react-flexbox-ui",
"version": "2.0.1",
"description": "React implementation for Flexbox CSS.",
"homepage": "http://cokeschlumpf.github.io/react-flexbox-ui/",
"keywords": [
"react",
"ecosystem-react",
"react-component",
"flexbox"
],
"author": "Michael Wellner <info@michaelwellner.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/cokeSchlumpf/react-flexbox-ui.git"
},
"main": "lib/main.js",
"peerDependencies": {
"react": "0.14.x"
},
"devDependencies": {
"babel": "^6.0.15",
"babel-plugin-object-assign": "^1.2.1",
"browserify": "^12.0.1",
"eslint": "^1.8.0",
"eslint-plugin-react": "^3.6.3",
"npm-check-updates": "^2.3.4",
"react-dom": "^0.14.2"
},
"scripts": {
"cu": "ncu",
"cuu": "ncu -u --upgradeAll",
"prepublish": "babel --plugins object-assign src/main.jsx -o lib/main.js",
"example": "babel --plugins object-assign example/main.jsx -o example/main.tmp.js && browserify example/main.tmp.js > example/main.js && rm example/main.tmp.js",
"build": "npm run prepublish && npm run example",
"lint": "eslint ./src/*.jsx",
"test": "npm run lint"
}
}