-
Notifications
You must be signed in to change notification settings - Fork 194
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "dox",
"description": "Markdown / JSdoc documentation generator",
"version": "1.0.0",
"author": "TJ Holowaychuk <[email protected]>",
"contributors": [
"Jocelyn Badgley <[email protected]>",
"Arseny Zarechnev <[email protected]>",
"Thomas Parisot <[email protected]>",
"Stephen Mathieson <[email protected]>",
"Vladimir Tsvang <[email protected]>",
"Nathan Rajlich <[email protected]>",
"Gion Kunz <[email protected]>",
"ForbesLindesay"
],
"homepage": "https://github.com/tj/dox",
"repository": {
"type": "git",
"url": "git://github.com/visionmedia/dox.git"
},
"keywords": [
"documentation",
"docs",
"markdown",
"jsdoc"
],
"bin": {
"dox": "./bin/dox"
},
"dependencies": {
"commander": "9.4.0",
"jsdoctypeparser": "^9.0.0",
"markdown-it": "13.0.1"
},
"devDependencies": {
"mocha": "10.0.0",
"should": "13.2.3"
},
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha test/*.test.js"
},
"types": "./index.d.ts"
}