forked from salsita/redux-form-actions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "redux-form-actions",
"version": "1.1.0",
"description": "Manage asynchrous redux form submit with actions.",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"jsnext:main": "src/index.js",
"scripts": {
"build:lib": "./node_modules/.bin/babel src --out-dir lib",
"check": "npm run lint && npm run test",
"lint": "./node_modules/.bin/eslint src/",
"preversion": "npm run check",
"version": "npm run build:lib",
"postversion": "git push && git push --tags",
"prepublish": "npm run build:lib",
"test": "BABEL_ENV=test ./node_modules/.bin/mocha --compilers js:babel-core/register --require babel-polyfill ./test/**/*.test.js || exit 0",
"test:watch": "npm test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/salsita/redux-form-actions.git"
},
"keywords": [
"redux",
"redux-form",
"form"
],
"author": "Roman Krejčík <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=5.0.0",
"npm": ">=3.0.0"
},
"devDependencies": {
"babel-cli": "^6.16.0",
"babel-core": "^6.17.0",
"babel-eslint": "^7.0.0",
"babel-plugin-rewire": "^1.0.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"chai": "^3.5.0",
"eslint": "^3.8.1",
"eslint-config-airbnb": "^12.0.0",
"eslint-plugin-import": "^1.16.0",
"eslint-plugin-jsx-a11y": "^2.2.3",
"eslint-plugin-react": "^6.4.1",
"mocha": "^3.1.2",
"sinon": "^1.17.6"
},
"dependencies": {},
"peerDependencies": {
"react": "^15.0.0",
"react-redux": "^4.3.0 || ^5.0.0-beta",
"redux": "^3.0.0",
"redux-form": "^6.0.0"
}
}