-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.19 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "redibox-hook-api",
"description": "A JSON API for RediBox",
"version": "0.1.0",
"main": "lib/index.js",
"author": "",
"repository": {
"github": "https://github.com/redibox/api"
},
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"redibox": {
"hook": true,
"name": "api"
},
"keywords": [
"redis",
"redis-cluster",
"cluster",
"scheduler",
"scheduling",
"waterline",
"sails",
"cache",
"throttle",
"throttling",
"timeseries",
"autocomplete",
"indexes",
"indices",
"lock",
"redlock",
"lua",
"ioredis",
"api",
"rest",
"json"
],
"scripts": {
"build": "babel src --out-dir lib",
"build-watch": "babel src --watch --out-dir lib",
"example": "cd example && ./../node_modules/.bin/babel-node app.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run lint && npm run build",
"lint": "./node_modules/.bin/eslint ./src",
"test": "./node_modules/.bin/babel-node -- ./node_modules/istanbul/lib/cli.js cover --report lcov _mocha "
},
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-eslint": "^6.0.4",
"babel-istanbul": "^0.8.0",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-plugin-transform-class-properties": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-preset-es2015-node-auto": "0.0.4",
"babel-preset-es2015-node4": "^2.1.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-es2015-node6": "^0.1.3",
"babel-preset-stage-0": "^6.5.0",
"benchmark": "^2.1.0",
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.9.0",
"eslint-config-airbnb": "^8.0.0",
"eslint-plugin-import": "^1.6.1",
"eslint-plugin-jsx-a11y": "^1.0.4",
"eslint-plugin-react": "^5.0.1",
"isparta": "^4.0.0",
"istanbul": "^1.0.0-alpha.2",
"mocha": "^2.4.5",
"redibox": "^2.0.1",
"redibox-hook-job": "^1.2.17",
"redibox-hook-memset": "^1.0.3",
"sinon": "^1.17.4"
},
"dependencies": {
"bluebird": "^3.4.6",
"koa": "^2.0.0",
"koa-basic-auth": "^2.0.0",
"koa-combine-routers": "^1.0.0",
"koa-router": "^7.0.1",
"require-all": "^2.0.0"
}
}