-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.36 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.36 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
46
47
48
49
{
"name": "redis-sorted-cache",
"version": "1.0.3",
"description": "A helper class to expire keys from a sorted set in Redis, useful for timeseries caches",
"main": "./redis-sorted-cache.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run test:modules && npm run test:coverage",
"test:modules": "mocha --recursive --compilers coffee:iced-coffee-script/register --require iced-coffee-coverage/register-istanbul test/",
"test:coverage": "istanbul report",
"build": "iced --bare --map --runtime node -o ./ -c src/",
"watch": "iced --watch --bare --map --runtime node -o ./ -c src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nextorigin/redis-sorted-cache.git"
},
"keywords": [
"redis",
"sorted",
"cache",
"expire",
"list",
"set",
"range",
"timeseries"
],
"author": "doublerebel",
"license": "MIT",
"bugs": {
"url": "https://github.com/nextorigin/redis-sorted-cache/issues"
},
"homepage": "https://github.com/nextorigin/redis-sorted-cache#readme",
"devDependencies": {
"chai": "^4.1.2",
"coveralls": "^2.11.12",
"iced-coffee-coverage": "^1.0.3",
"iced-coffee-script": "^108.0.11",
"istanbul": "^0.4.5",
"mocha": "^3.1.0",
"redis": "^2.6.2"
},
"dependencies": {
"errify": "^1.0.0",
"iced-runtime": "^1.0.3"
}
}