forked from maxnachlinger/memcache-client-memoizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1016 Bytes
/
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
{
"name": "memcache-client-memoizer",
"version": "0.0.3",
"description": "Memoizes promise-returning functions via memcache-client",
"main": "index.js",
"scripts": {
"pretest": "./node_modules/.bin/standard --verbose | ./node_modules/.bin/snazzy",
"test": "jest"
},
"homepage": "https://github.com/maxnachlinger/memcache-client-memoizer",
"repository": {
"type": "git",
"url": "https://github.com/maxnachlinger/memcache-client-memoizer.git"
},
"bugs": {
"url": "https://github.com/maxnachlinger/memcache-client-memoizer/issues"
},
"engines": {
"node": "8.x.x"
},
"author": "Max Nachlinger",
"license": "ISC",
"dependencies": {
"lodash.isfunction": "3.0.9"
},
"devDependencies": {
"jest": "22.3.0",
"memcache-client": "0.10.0",
"snazzy": "7.0.0",
"standard": "10.0.3",
"uuid": "3.2.1"
},
"standard": {
"globals": [
"jest",
"beforeEach",
"afterEach",
"describe",
"it",
"expect"
]
}
}