-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.05 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
{
"name": "react-partial",
"version": "2.0.1",
"description": "Do you prefer to write stateless functional components over class syntax but still need state occasionally? React Partial 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-partial.git"
},
"author": "Riku Tiira (https://github.com/rikutiira)",
"license": "MIT",
"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",
"react": "^15.0.2",
"react-dom": "^15.0.2"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0-0"
}
}