forked from rain1017/async-lock
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
48 lines (48 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
{
"name": "async-lock",
"description": "Lock on asynchronous code",
"version": "1.4.1",
"author": {
"name": "Rogier Schouten",
"url": "https://github.com/rogierschouten/",
"email": "[email protected]"
},
"private": false,
"homepage": "https://github.com/rogierschouten/async-lock",
"repository": {
"type": "git",
"url": "git+https://github.com/rogierschouten/async-lock.git"
},
"bugs": {
"url": "https://github.com/rogierschouten/async-lock/issues"
},
"license": "MIT",
"keywords": [
"lock",
"async",
"concurrency",
"critical",
"section",
"mutex"
],
"engines": {},
"scripts": {
"start": "grunt",
"test": "grunt test"
},
"devDependencies": {
"bluebird": "^3.5.1",
"grunt": "^1.0.4",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.1.0",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-watch": "^1.1.0",
"grunt-env": "^1.0.1",
"grunt-mocha-test": "^0.13.3",
"load-grunt-tasks": "^4.0.0",
"lodash": "^4.17.20",
"mocha": "^10.2.0",
"q": "^1.5.1",
"should": "^13.2.1"
}
}