-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 803 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
{
"name": "locklock-redis",
"version": "0.1.3",
"description": "a simple package for using global locking/unlocking in your code",
"main": "locklock.js",
"scripts": {
"test": "mocha --timeout 5000 --exit",
"lint": "eslint --ignore-path .eslintignore ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kareem-Emad/locklock"
},
"keywords": [
"locking",
"javascript",
"redis"
],
"author": "kareem emad",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kareem-Emad/locklock/issues"
},
"homepage": "https://github.com/Kareem-Emad/locklock#readme",
"dependencies": {
"eslint": "^5.0.0",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-mocha": "^7.0.1",
"mocha": "^5.2.0",
"redis": "^3.0.2"
}
}