forked from kpaxqin/redux-promise-thunk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "@xuluwarrior/redux-promise-thunk",
"version": "0.1.8",
"description": "Thunk generator to dispatch Flux-Standard-Action in each phase of promise",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kpaxqin/redux-promise-thunk.git"
},
"homepage": "https://github.com/kpaxqin/redux-promise-thunk",
"keywords": [
"redux",
"promise",
"thunk",
"FSA"
],
"scripts": {
"build": "babel src/ --out-dir lib/",
"test": "mocha --require babel-polyfill --require babel-register --reporter spec test/*.js",
"pre-publish": "babel src --out-dir lib",
"lint": "eslint src/"
},
"author": "",
"license": "ISC",
"peerDependencies": {
"redux-thunk": "*",
"immutable": "^3.8.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^9.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-runtime": "^5.8.34",
"chai": "^3.4.1",
"eslint": "^5.6.0",
"eslint-config-airbnb": "^1.0.0",
"eslint-plugin-react": "^3.7.1",
"mocha": "^5.2.0",
"sinon": "^1.17.2"
},
"babel": {
"presets": [
"env"
],
"plugins": [
"transform-object-rest-spread"
]
}
}