-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·56 lines (56 loc) · 1.05 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
{
"name": "memoise",
"version": "2.6.0",
"description": "Library for memoization/caching async functions",
"main": "index.js",
"scripts": {
"test:unit": "mocha --bail test/index.js",
"test": "standard && npm run test:unit"
},
"engines": {
"node": ">=7.8.0"
},
"dependencies": {
"lru-cache": "4.1.3",
"redis": "2.8.0",
"sigmund": "1.0.1",
"lodash": ">=4.17.13"
},
"repository": {
"type": "git",
"url": "https://github.com/niklabh/memoise"
},
"keywords": [
"caching",
"memoise",
"memoisation",
"async",
"performance",
"redis"
],
"author": "Nikhil Ranjan <niklabh811@gmail.com>",
"license": "MIT",
"public": true,
"bugs": {
"url": "https://github.com/niklabh/memoise/issues"
},
"standard": {
"globals": [
"describe",
"it",
"afterEach",
"beforeEach",
"before",
"after"
],
"ignore": [
"/test/**"
]
},
"devDependencies": {
"chai": "4.1.2",
"mocha": "3.0.2",
"sinon": "2.2.0",
"standard": "10.0.3"
}
}