forked from apidoc/apidoc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.09 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
42
43
44
45
46
47
48
49
50
51
{
"name": "apidoc",
"version": "0.9.0",
"description": "RESTful web API Documentation Generator",
"author": "Peter Rottmann <[email protected]>",
"preferGlobal": true,
"homepage": "http://apidocjs.com",
"repository": {
"type": "git",
"url": "https://github.com/apidoc/apidoc.git"
},
"license": {
"type": "MIT",
"url": "https://github.com/apidoc/apidoc/blob/master/LICENSE.md"
},
"bugs": {
"url": "https://github.com/apidoc/apidoc/issues"
},
"main": "./lib/apidoc",
"bin": "bin/apidoc",
"scripts": {
"test": "grunt test"
},
"keywords": [
"api",
"apidoc",
"doc",
"documentation",
"rest",
"restful"
],
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {
"colors": "~1.0.3",
"fs-extra": "~0.13.0",
"lodash": "~2.4.1",
"marked": "~0.3.2",
"optimist": "~0.6.1",
"semver": "~4.1.0",
"wrench": "~1.5.8"
},
"devDependencies": {
"grunt": "~0.4.5",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-jshint": "~0.10.0",
"grunt-simple-mocha": "~0.4.0",
"should": "~4.2.1"
}
}