-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 741 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 741 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
{
"name": "routedoc",
"version": "0.0.3",
"description": "a tool for documenting and generating routes.",
"main": "index.js",
"scripts": {
"test": "node tests/index.js",
"coverage": "./node_modules/istanbul/lib/cli.js cover tests/index.js",
"codecov": "npm run coverage && cat coverage/lcov.info | ./node_modules/codecov/bin/codecov"
},
"bin": {
"routedoc": "./bin/routedoc"
},
"author": "Matt Powell",
"license": "MIT",
"repository": {
"type" : "git",
"url" : "https://github.com/mattpowell/routedoc.git"
},
"dependencies": {
"doctrine": "^1.2.1",
"path-to-regexp": "^1.2.1",
"pegjs": "^0.9.0"
},
"devDependencies": {
"codecov": "^1.0.1",
"istanbul": "^0.4.3"
}
}