forked from mhssmnn/redux-form-saga
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.6 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
{
"name": "redux-form-saga",
"version": "0.2.0",
"description": "An action creator and saga for integrating Redux Form and Redux Saga",
"keywords": [
"redux-form",
"redux",
"form",
"react",
"react-redux",
"flux",
"saga",
"submit"
],
"main": "lib/index.js",
"module": "es/index.js",
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"babel-register": "^6.24.1",
"babel-runtime": "*",
"chai": "^3.4.1",
"cross-env": "^5.0.1",
"eslint": "^2.4.0",
"eslint-plugin-babel": "^3.0.0",
"flux-standard-action": "^0.6.0",
"mocha": "^2.3.4",
"react": "^15.3.1",
"redux-saga": "^0.15.5"
},
"peerDependencies": {
"redux-saga": ">= 0.15.0 < 1"
},
"repository": {
"type": "git",
"url": "[email protected]:mhssmnn/redux-form-saga.git"
},
"author": "Mark Haussmann <[email protected]>",
"bugs": {
"url": "https://github.com/mhssmnn/redux-form-saga/issues"
},
"scripts": {
"lint": "eslint ./index.js ./src/**/*.{js,jsx}",
"pretest": "npm run build",
"test": "./node_modules/.bin/mocha --compilers js:babel-register test",
"test.watch": "npm run test -- --watch",
"build": "npm run build:cjs && npm run build:es",
"build:cjs": "cross-env BABEL_ENV=development babel src/ --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src/ --out-dir es",
"watch": "npm run build -- --watch",
"prepare": "npm run build"
},
"license": "MIT"
}