-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1.1 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
{
"name": "redfour",
"version": "2.2.2",
"description": "A redis binary semaphore with async wait",
"engines": {
"node": ">=7.6.0"
},
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"ci": "npm run lint && npm test",
"test": "mocha",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixmaxhq/redfour.git"
},
"keywords": [
"redis",
"semaphore",
"mutex",
"node"
],
"author": "Mixmax <hello@mixmax.com> (https://mixmax.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/redfour/issues"
},
"homepage": "https://github.com/mixmaxhq/redfour#readme",
"devDependencies": {
"@mixmaxhq/prettier-config": "^1.0.0",
"chai": "^3.5.0",
"eslint": "^6.4.0",
"eslint-config-mixmax": "^2.1.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-prettier": "^3.1.1",
"mocha": "^3.0.2",
"prettier": "^1.18.2",
"redis-server": "^1.2.0"
},
"dependencies": {
"node-redis-scripty": "^0.0.5",
"promise-callbacks": "^3.1.0",
"redis": "^2.6.2"
}
}