-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
46 lines (46 loc) · 936 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
41
42
43
44
45
46
{
"name": "async-lock",
"description": "Lock on asynchronous code",
"version": "0.3.6",
"author": "rain1017",
"private" : false,
"homepage" : "https://github.com/rain1017/async-lock",
"repository" : {
"type" : "git",
"url" : "https://github.com/rain1017/async-lock.git"
},
"bugs" : {
"url" : "https://github.com/rain1017/async-lock/issues"
},
"keywords" : [
"lock",
"async",
"concurrency",
"critical",
"section",
"mutex"
],
"engines": {
},
"scripts": {
"start": "grunt",
"test": "grunt test",
"postinstall": ""
},
"dependencies": {
"q": "~1.4.1"
},
"devDependencies": {
"bluebird": "~2.9.34",
"lodash": "~3.10.1",
"should": "~5.1.0",
"grunt-cli": "~0.1.13",
"grunt-env": "~0.4.2",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-jshint": "~0.11.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-mocha-test": "~0.12.6",
"load-grunt-tasks": "~3.1.0",
"blanket" : "~1.1.6"
}
}