-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 906 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
{
"author": "Antonio Santiago <[email protected]> (http://acuriousanimal.com)",
"name": "clydeio-memory-cache",
"homepage": "https://github.com/clydeio/clydeio-memory-cache",
"description": "Memory cache filter for Clyde API gateway.",
"keywords": [
"clydeio",
"filter",
"cache",
"memory"
],
"version": "0.1.3",
"repository": {
"type": "git",
"url": "https://github.com/clydeio/clydeio-memory-cache.git"
},
"main": "./lib/index.js",
"directories": {
"lib": "./lib"
},
"license": "MIT",
"scripts": {
"lint": "./node_modules/eslint/bin/eslint.js **/*.js",
"test": "./node_modules/mocha/bin/mocha test/**/*.test.js"
},
"engines": {
"node": ">=0.10"
},
"dependencies": {
"node-cache": "^3.0.0"
},
"devDependencies": {
"clydeio": "^0.2.2",
"eslint": "^0.24.0",
"mocha": "^2.2.5",
"supertest": "^1.0.1"
}
}