-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "redux-fsa-thunk",
"version": "0.0.2",
"description": "FSA-compliant thunk middleware for Redux.",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"lint": "eslint .",
"build": "babel src --out-dir lib",
"test": "npm run lint && npm run build && mocha",
"prepublish": "npm run clean && npm run test"
},
"repository": {
"type": "git",
"url": "https://github.com/jtpalmer/redux-fsa-thunk.git"
},
"homepage": "https://github.com/jtpalmer/redux-fsa-thunk",
"keywords": [
"redux",
"thunk",
"middleware",
"redux-middleware",
"fsa",
"flux"
],
"author": {
"name": "Jeffrey T. Palmer",
"email": "jeffrey.t.palmer@gmail.com",
"url": "https://github.com/jtpalmer"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jtpalmer/redux-fsa-thunk/issues"
},
"dependencies": {
"flux-standard-action": "^0.6.1"
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.8.0",
"babel-runtime": "^6.6.1",
"eslint": "^2.9.0",
"eslint-plugin-babel": "^3.2.0",
"expect": "^1.19.0",
"mocha": "^2.4.5",
"redux-actions": "^0.9.1",
"rimraf": "^2.5.2"
}
}