-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 822 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 822 Bytes
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
{
"name": "process-locker",
"version": "0.3.2",
"description": "Base on redis, same resource should only be processed once. Requests about the resource will be pending until process is complete and then the result will be returned.",
"main": "index.js",
"scripts": {
"test": "mocha -r thunk-mocha test/index.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/orangemi/process-locker"
},
"bugs": {
"url": "https://github.com/orangemi/process-locker/issues"
},
"homepage": "https://github.com/orangemi/process-locker",
"author": "Orange Mi <orangemiwj@gmail.com>",
"license": "MIT",
"dependencies": {
"debug": "^3.1.0",
"thunk-redis": "^2.1.6"
},
"devDependencies": {
"mocha": "^2.5.3",
"thunk-mocha": "^1.0.8",
"thunks": "^4.9.0"
}
}