-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 874 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 874 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
29
30
31
32
33
{
"name": "RwControlFlow",
"description": "A module to simply handle control flow in nodejs and avoid bad looking code",
"main": "./controlflow",
"author": "Simone Potenza simone.potenza@gmail.com",
"version": "0.0.1",
"repository" : {
"type" : "git",
"url" : "http://github.com/rewop/control-flow.git"
},
"bugs" : {
"url" : "http://github.com/rewop/control-flow/issues"
},
"licenses" : [
{
"type" : "MIT",
"url" : "http://github.com/rewop/control-flow/raw/master/LICENSE"
}
],
"private" : true,
"devDependencies": {
"chai": "*",
"chai-things": "*",
"mocha": "*"
},
"dependencies": {
"async": ">0.2.6",
"RwUtils": "git://github.com/rewop/RwUtils.git"
},
"scripts": {
"test": "make test"
}
}