-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
41 lines (41 loc) · 1.01 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
{
"name": "vatican",
"author": "Fernando Doglio <[email protected]>",
"description": "Micro-framework designed to create REST APIs with minor effort and using annotations",
"keywords": [
"rest",
"api",
"framework",
"annotations"
],
"repository": {
"type": "git",
"url": "https://github.com/deleteman/vatican"
},
"contributors": [
{
"name": "Badarau Petru",
"email": "[email protected]"
}
],
"scripts": {
"test": "istanbul cover node_modules/.bin/_mocha -- -u exports -R spec test/*.js"
},
"bin": {
"vatican": "./bin/vatican"
},
"version": "1.5.0",
"dependencies": {
"colors": "0.6.2",
"lodash": "2.4.1",
"mongoose": "*",
"sinon": "^5.0.6",
"strip-json-comments": "1.0.1",
"winston": "0.7.3"
},
"devDependencies": {
"istanbul": "^0.4.5",
"mocha": "1.21.4",
"should": "4.0.4"
}
}