-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.31 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
41
42
43
44
{
"name": "rf-form",
"version": "0.5.0",
"description": "rf form: build react form with validations in a better way.",
"main": "lib/index.js",
"scripts": {
"test": "node node_modules/webpack/bin/webpack.js --progress --colors --watch -d",
"build": "node node_modules/babel-cli/bin/babel ./src --out-dir ./lib --source-maps",
"autobuild": "node node_modules/babel-cli/bin/babel ./src --out-dir ./lib --source-maps --watch",
"prepublish": "npm run build"
},
"author": "zhaoyao91 <[email protected]>",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/ShakingMap/rf-form.git"
},
"dependencies": {
"lodash": "^4.12.0"
},
"peerDependencies": {
"react": ">=0.13.0"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.6.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-2": "^6.5.0",
"bootstrap": "^3.3.6",
"css-loader": "^0.23.1",
"file-loader": "^0.8.5",
"react": "^15.0.2",
"react-dom": "^15.0.2",
"rf-bootstrap3": "^0.3.0",
"source-map-loader": "^0.1.5",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.0",
"webpack-dev-server": "^1.14.1"
},
"keywords": ["react", "form", "rf-form"]
}