forked from thlorenz/jsdoc-githubify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.4 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
{
"name": "jsdoc-githubify",
"version": "0.1.3",
"description": "A transform that adapts html files generated with jsdoc to be rendered in a github wiki or readme.",
"main": "index.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/jsdoc-githubify.git"
},
"homepage": "https://github.com/thlorenz/jsdoc-githubify",
"dependencies": {
"resolve-git-remote": "~0.1.1",
"resolve-git-branch": "~0.1.0",
"asyncreduce": "~0.1.4",
"cheerio": "~0.12.4",
"readable-stream": "~1.1.9"
},
"devDependencies": {
"nave": "~0.4.3",
"tap": "~0.4.3",
"apply-transform": "~0.1.0"
},
"keywords": [
"jsdoc",
"transform",
"github",
"readme",
"wiki",
"html",
"markdown",
"mutiny"
],
"author": {
"name": "Thorsten Lorenz",
"email": "[email protected]",
"url": "http://thlorenz.com"
},
"license": {
"type": "MIT",
"url": "https://github.com/thlorenz/jsdoc-githubify/blob/master/LICENSE"
},
"engine": {
"node": ">=0.6"
},
"peerDependencies": {
"jsdoc": "3.5.5"
}
}