-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
59 lines (59 loc) · 1.49 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
52
53
54
55
56
57
58
59
{
"name": "docme",
"version": "0.3.0",
"description": "Generates github compatible API documentation from your project's jsdocs and adds them to your Readme.",
"main": "index.js",
"bin": {
"docme": "bin/docme.js"
},
"scripts": {
"test-main": "tap test/*.js",
"test-0.8": "nave use 0.8 npm run test-main",
"test-0.10": "nave use 0.10 npm run test-main",
"test-all": "npm run test-main && npm run test-0.8 && npm run test-0.10",
"test": "if [ -e $TRAVIS ]; then npm run test-all; else git checkout master && npm run test-main; fi"
},
"repository": {
"type": "git",
"url": "git://github.com/thlorenz/docme.git"
},
"homepage": "https://github.com/thlorenz/docme",
"dependencies": {
"jsdoc": "thlorenz/jsdoc#docme",
"jsdoc-githubify": "~0.1.2",
"minimist": "0.0.5",
"mutiny": "~0.4.0",
"npmlog": "0.0.6",
"prune-html": "~0.1.0",
"readable-stream": "~1.1.9",
"rimraf": "~2.2.5",
"runnel": "~0.5.1",
"through2": "~0.2.3",
"transformify": "~0.1.0",
"update-section": "~0.1.1"
},
"devDependencies": {
"nave": "~0.4.3",
"tap": "~0.4.3"
},
"keywords": [
"jsdoc",
"documentation",
"generate",
"readme",
"github",
"comments"
],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/docme/blob/master/LICENSE"
},
"engine": {
"node": ">=0.6"
}
}