-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
83 lines (83 loc) · 1.96 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "redux-dataloader",
"version": "1.3.0",
"description": "Loads async data for Redux apps focusing on preventing duplicated requests and dealing with async dependencies.",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/kouhin/redux-dataloader.git"
},
"bugs": {
"url": "https://github.com/kouhin/redux-dataloader/issues"
},
"homepage": "https://github.com/kouhin/redux-dataloader",
"scripts": {
"prepare": "npm run clean && npm run lint && npm test && npm run build",
"clean": "rimraf lib coverage",
"build": "babel src --out-dir lib",
"test": "mocha test/*.js --opts mocha.opts",
"test:cov": "babel-node $(npm bin)/isparta cover $(npm bin)/_mocha test/*.js -- --opts mocha.opts",
"lint": "eslint src test"
},
"files": [
"lib",
"src"
],
"keywords": [
"redux",
"react",
"middleware",
"redux-middleware",
"data",
"loading",
"async",
"effects",
"side effects",
"isomorphic"
],
"author": "Bin Hou",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"chai": "^4.1.2",
"eslint-config-airbnb-deps": "^15.1.3",
"isparta": "^4.0.0",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"redux": "^3.7.2",
"rimraf": "^2.6.2",
"sinon": "^4.1.2"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"lodash": "^4.17.4",
"retryit": "^1.2.0"
},
"eslintConfig": {
"extends": "eslint-config-airbnb",
"env": {
"browser": true,
"node": true,
"mocha": true
},
"plugins": [
"react",
"import"
],
"rules": {
"import/no-extraneous-dependencies": [
"error",
{
"devDependencies": [
"**/*.test.js"
]
}
]
}
}
}