-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.61 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
{
"name": "redux-memoize",
"version": "2.3.1",
"description": "Memoize action creator for redux, and let you dispatch common/thunk/promise/async action whenever you want to, without worrying about duplication",
"main": "lib/index.js",
"directories": {
"test": "jest"
},
"files": [
"src",
"lib"
],
"scripts": {
"clean": "rimraf lib",
"build": "babel src --out-dir lib",
"lint": "eslint src test",
"posttest": "npm run lint",
"prepublish": "npm run clean && npm run test && npm run build",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/kouhin/redux-memoize.git"
},
"homepage": "https://github.com/kouhin/redux-memoize",
"keywords": [
"redux",
"react",
"memoize",
"cache",
"thunk",
"middleware",
"thunk-middleware",
"cache-middleware",
"dedupe",
"duplication",
"duplicated",
"action",
"flux"
],
"author": "Bin Hou <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-jest": "^20.0.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.2.1",
"babel-preset-stage-0": "^6.22.0",
"chai": "^4.0.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-deps": "^15.0.1",
"eslint-plugin-babel": "^4.1.1",
"jest": "^20.0.3",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0",
"rimraf": "^2.6.1"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"lodash": "^4.17.4"
},
"jest": {
"testRegex": "(/test/.*\\.spec.js)$"
}
}