-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 852 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
{
"name": "safer-async",
"version": "0.0.7",
"description": "Provides better error handling and profiling for the async library",
"main": "./lib/saferAsync",
"scripts": {
"test": "nodeunit test/saferAsync.js",
"lint": "jshint lib/saferAsync.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jribeiro/safer-async.git"
},
"keywords": [
"async",
"debug",
"profiling"
],
"author": "Joao Campos Ribeiro",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jribeiro/safer-async/raw/master/LICENSE"
}
],
"bugs": {
"url": "https://github.com/jribeiro/safer-async/issues"
},
"homepage": "https://github.com/jribeiro/safer-async",
"dependencies": {
"async": "^1.4.0",
"lodash": "^3.5.0"
},
"devDependencies": {
"nodeunit": "^0.9.1"
}
}