-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.55 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "bluecache",
"version": "4.1.3",
"description": "Read-through, in-memory, least recently used (lru) cache",
"license": "MIT",
"main": "index.js",
"scripts": {
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly ./test -- --recursive -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"coverage": "istanbul cover --report=json-summary --report=html _mocha ./test -- --recursive",
"test": "node node_modules/mocha/bin/mocha ./test --recursive"
},
"engines": {
"node": ">4.x"
},
"repository": {
"type": "git",
"url": "git://github.com/kurttheviking/bluecache.git"
},
"keywords": [
"lru cache",
"least recently used cache",
"read-through cache",
"in-memory cache"
],
"author": {
"name": "Kurt Ericson",
"email": "github@kurttheviking.com",
"url": "http://github.com/kurttheviking"
},
"contributors": [
{
"name": "Ismael Rivera",
"url": "https://github.com/ismriv"
}
],
"bugs": {
"url": "https://github.com/kurttheviking/bluecache/issues"
},
"homepage": "https://github.com/kurttheviking/bluecache#readme",
"dependencies": {
"lru-cache": "4.1.1",
"ms": "2.0.0"
},
"devDependencies": {
"chai": "4.1.2",
"coveralls": "2.13.1",
"delay": "2.0.0",
"eslint": "4.18.2",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.8.0",
"istanbul": "0.4.5",
"mocha": "3.5.0",
"mocha-eslint": "4.1.0",
"mocha-lcov-reporter": "1.3.0",
"sinon": "4.1.2"
}
}