-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.18 KB
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
{
"name": "redis-cache-wrap",
"description": "Node.js module for wrapping promise results in Redis.",
"version": "1.3.0",
"author": "Alex Dulin",
"bugs": {
"url": "https://github.com/alexdulin/redis-cache-wrap/issues"
},
"dependencies": {
"ioredis": "^3.1.2"
},
"devDependencies": {
"@morningconsult/eslint-config-morning-consult": "^0.4.0",
"changelog-maker": "^2.2.5",
"eslint": "^5.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"nsp": "^3.1.0"
},
"engines": {
"node": ">=8.10.0"
},
"homepage": "https://github.com/alexdulin/redis-cache-wrap#readme",
"keywords": [
"cache",
"promise",
"redis",
"wrap"
],
"license": "ISC",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/alexdulin/redis-cache-wrap.git"
},
"scripts": {
"preversion": "npm test",
"postversion": "make changelog && git add CHANGELOG.md && git commit --amend --no-edit",
"test": "make",
"release": "npm test && npm publish --access public"
}
}