-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.45 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
{
"name": "redibox-hook-memset",
"description": "Synchronised data sets stored in memory across all servers - for quick synchronous access to data that is commonly used but not likely to update frequently.",
"version": "1.1.0",
"main": "src/index.js",
"author": "Mike Diarmid",
"repository": {
"github": "https://github.com/redibox/memset"
},
"license": "MIT",
"engines": {
"node": ">=6.0"
},
"redibox": {
"hook": true,
"name": "memset"
},
"keywords": [
"redis",
"redis-cluster",
"cluster",
"waterline",
"sails",
"cache",
"memory",
"set",
"immutable",
"lua",
"ioredis"
],
"scripts": {
"debug": "devtool tests.js --no-nt --console -- --verbose",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"prepublish": "npm run lint",
"lint": "./node_modules/.bin/eslint ./src",
"test": "node -- ./node_modules/istanbul/lib/cli.js cover --report lcov _mocha"
},
"devDependencies": {
"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",
"sinon": "^1.17.4"
},
"dependencies": {
"bluebird": "^3.3.5",
"immutable": "^3.8.1",
"later": "^1.2.0"
}
}