-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
37 lines (37 loc) · 999 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
{
"name": "react-pure-ui",
"version": "0.5.0",
"description": "Development component for connecting stateless components to an array of states",
"license": "MIT",
"repository": "timhudson/react-pure-ui",
"main": "./lib/index.js",
"author": "Tim Hudson <[email protected]> (http://github.com/timhudson)",
"bugs": {
"url": "https://github.com/timhudson/react-pure-ui/issues"
},
"homepage": "https://github.com/timhudson/react-pure-ui",
"scripts": {
"build": "babel src --out-dir lib",
"watch": "babel src --out-dir lib --watch",
"prepublish": "npm run build",
"test": "standard"
},
"keywords": [
"react",
"reactjs"
],
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-preset-env": "^1.1.8",
"babel-preset-stage-2": "^6.22.0",
"react": "^15.4.2",
"standard": "^8.6.0"
},
"dependencies": {
"keycode": "^2.1.8"
}
}