forked from balihoo/lru-cache-promise
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "lru-cache-promise",
"version": "1.0.5",
"description": "lru-cache with promises and async fetching",
"main": "lib/lru-cache-promise.js",
"scripts": {
"test": "node node_modules/gulp/bin/gulp.js test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balihoo/lru-cache-promise.git"
},
"keywords": [
"lru",
"cache",
"lru-cache"
],
"author": "Jeff Flitton",
"license": "MIT",
"bugs": {
"url": "https://github.com/balihoo/lru-cache-promise/issues"
},
"homepage": "https://github.com/balihoo/lru-cache-promise#readme",
"dependencies": {
"bluebird": "^3.3.5",
"lru-cache": "^4.0.1"
},
"devDependencies": {
"coffee-script": "^1.10.0",
"del": "^2.2.0",
"expect": "^1.16.0",
"gulp": "^3.9.1",
"gulp-coffee": "^2.3.2",
"gulp-coffee-istanbul": "^0.8.1",
"gulp-coffeelint": "^0.6.0",
"gulp-mocha": "^2.2.0",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"traceur": "0.0.107"
},
"directories": {
"test": "test"
}
}