forked from davidkpiano/react-redux-form
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.93 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "react-redux-form",
"version": "0.6.2",
"description": "Create Forms Easily with React and Redux",
"main": "lib/index.js",
"scripts": {
"start": "npm run build",
"test": "npm run build:lib && mocha --require babel-core/register --require ./test/spec-setup.js",
"test:watch": "mocha -w --require babel-core/register --require ./test/spec-setup.js",
"build": "npm run build:umd && npm run build:lib",
"build:watch": "babel -w src --out-dir lib",
"build:umd": "webpack -p src/index.js dist/index.js --config webpack.config.prod.js",
"build:lib": "babel src --out-dir lib",
"preversion": "npm run test",
"prepublish": "npm test && npm run build",
"postversion": "git push && git push --tags",
"publish:beta": "npm publish --tag beta"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidkpiano/react-redux-form.git"
},
"keywords": [
"redux",
"form",
"redux-form",
"react-redux-form",
"react",
"reactjs"
],
"author": "David Khourshid <davidkpiano@gmail.com> (http://github.com/davidkpiano)",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidkpiano/react-redux-form/issues"
},
"homepage": "https://github.com/davidkpiano/react-redux-form#readme",
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-core": "^6.3.17",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"chai": "^3.4.1",
"chai-subset": "^1.2.0",
"immutable": "^3.7.6",
"jsdom": "^8.0.4",
"mocha": "^2.3.4",
"react-addons-test-utils": "^0.14.6",
"react-dom": "^0.14.7",
"redux-mock-store": "0.0.6",
"redux-thunk": "^1.0.3",
"should": "^8.0.2",
"webpack": "^1.12.9"
},
"dependencies": {
"icepick": "^1.1.0",
"lodash": "^4.0.0",
"react": "^0.14.6",
"react-redux": "^4.0.0",
"redux": "^3.0.4"
}
}