-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.06 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
{
"name": "react-wrappy",
"version": "2.1.0",
"description": "Do you prefer to write stateless functional components over class syntax but still need state occasionally? Wrappy gives you lifted component methods to create stateful components in a declarative, functional manner.",
"main": "./lib/index.js",
"scripts": {
"start": "budo dev.js --live -- -t [ babelify --presets [es2015 react stage-2] ]",
"build": "babel src/index.js --out-file lib/index.js",
"prepublish": "npm run build"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/rikutiira/react-wrappy.git"
},
"author": "Riku Tiira (https://github.com/rikutiira)",
"license": "MIT",
"dependencies": {
"react": "^15.0.2",
"react-dom": "^15.0.2"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"babelify": "^7.3.0",
"budo": "^8.2.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
}
}