forked from tianshuo/npm-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (32 loc) · 792 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
{
"name":"diap",
"description":"Dependancy Injection with routing support for ExpressJs project",
"version":"0.0.6",
"homepage":"https://github.com/tiengtinh/diap",
"repository":"git://github.com/tiengtinh/diap.git",
"author":"TiengTinh <[email protected]>",
"main":"./index.js",
"dependencies":{
"coffee-script":"1.6.3",
"underscore":"1.5.2",
"underscore.string":"2.3.3",
"di":"0.0.1",
"cli-color":"0.2.3"
},
"devDependencies":{
"mocha":"*",
"should":"*"
},
"scripts":{
"test":"mocha --compilers coffee:coffee-script"
},
"engines":{
"node":">= 0.4.0"
},
"licenses":[
{
"type":"MIT",
"url":"http://github.com/tiengtinh/diap/raw/master/LICENSE"
}
]
}