-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
31 lines (31 loc) · 868 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
{
"author": "fish <[email protected]> (https://github.com/fishbar)",
"name": "api-annotation",
"description": "like java annotation, using comments annotation, generate both router binding script and apidoc",
"version": "0.3.0",
"homepage": "https://github.com/fishbar/api-annotation",
"repository": {
"type": "git",
"url": "git://github.com/fishbar/api-annotation.git"
},
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --recursive test",
"pretest": "./node_modules/.bin/pegjs ./lib/comment_parser.pegjs ./lib/comment_parser.js"
},
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"debug": "~2.2.0",
"esprima": "~2.6.0",
"marked": "~0.3.5",
"xfs": "~0.2.0"
},
"devDependencies": {
"pegjs": "~0.9.0",
"jscoverage": "*",
"mocha": "*",
"expect.js": "*"
}
}