-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1021 Bytes
/
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
{
"name": "exclusion-mutuelle",
"version": "1.1.0",
"description": "Node.js A mutex implementation using redis and redlock",
"main": "index.js",
"scripts": {
"prepublish": "cp -r src/* ./",
"postpublish": "ls src/ | xargs rm -rf",
"test": "./node_modules/.bin/mocha tests/ --recursive --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cermati/exclusion-mutuelle.git"
},
"keywords": [
"nodejs",
"redlock",
"mutex"
],
"author": "Sendy Halim <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cermati/exclusion-mutuelle/issues"
},
"homepage": "https://github.com/cermati/exclusion-mutuelle#readme",
"dependencies": {
"bluebird": "~3.5.1",
"debug": "~3.1.0",
"lodash": "~4.17.10",
"redlock": "~3.1.2"
},
"devDependencies": {
"chai": "~4.1.2",
"chai-as-promised": "~7.1.1",
"mocha": "~5.2.0",
"proxyquire": "~2.0.1",
"sinon": "~6.1.3",
"sinon-chai": "~3.2.0"
}
}