-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.3 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
{
"name": "redux-promised",
"version": "1.3.0",
"description": "FSA-compliant promise middleware for redux with optimistic update support.",
"main": "lib/index.js",
"files": [
"lib",
"src"
],
"scripts": {
"build": "babel src --out-dir lib",
"prepublish": "npm run test && rimraf lib && npm run build",
"test": "mocha --compilers js:babel-core/register --reporter spec test/*.js",
"posttest": "npm run lint",
"lint": "eslint src test"
},
"repository": {
"type": "git",
"url": "https://github.com/bobmonteverde/redux-promised.git"
},
"homepage": "https://github.com/bobmonteverde/redux-promised",
"keywords": [
"redux",
"promise",
"middleware",
"redux-middleware",
"flux"
],
"author": "Bob Monteverde <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^5.0.0",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"chai": "^3.5.0",
"chai-as-promised": "^5.2.0",
"eslint": "^2.2.0",
"eslint-config-standard": "5.1.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.3.1",
"mocha": "^2.4.5",
"rimraf": "^2.5.2",
"sinon": "^1.17.3"
}
}