-
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 <tj@vision-media.ca>",
"contributors": [
"Jocelyn Badgley <joc@twipped.com>",
"Arseny Zarechnev <me@evindor.com>",
"Thomas Parisot <hi@oncletom.io>",
"Stephen Mathieson <me@stephenmathieson.com>",
"Vladimir Tsvang <vtsvang@gmail.com>",
"Nathan Rajlich <nathan@tootallnate.net>",
"Gion Kunz <gion.kunz@gmail.com>",
"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"
}