-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 831 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 831 Bytes
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
{
"name": "promise-cache-memorize",
"version": "2.0.3",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint index.js lib/*.js test/*.js",
"lint:fix": "eslint --fix index.js lib/*.js test/*.js",
"unit": "mocha",
"test": "npm run unit && npm run lint",
"test:watch": "mocha --watch"
},
"keywords": [
"cache",
"promise"
],
"author": "sdvcrx",
"license": "MIT",
"devDependencies": {
"chai": "^4.1.1",
"chai-as-promised": "^7.1.1",
"eslint": "^4.15.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"mocha": "^3.5.0"
},
"dependencies": {
"ioredis": "^3.2.2",
"lru-cache": "^4.1.1"
}
}