forked from lyonbot/gendoc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 828 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 828 Bytes
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": "ts-gendoc",
"version": "0.1.1",
"description": "get info from TypeScript type declaration and generate document",
"main": "index.js",
"scripts": {
"prepare": "npm run build",
"build": "tsc -m es6 && rollup -c",
"test": "nyc mocha"
},
"keywords": [
"document",
"generate",
"interface",
"type",
"typing",
"ast",
"typescript",
"api"
],
"author": "lyonbot",
"repository": {
"type": "git",
"url": "git://github.com/lyonbot/gendoc.git"
},
"license": "MIT",
"dependencies": {
"typescript": "^3.8.3"
},
"devDependencies": {
"@types/mocha": "^7.0.2",
"mocha": "^7.1.0",
"nyc": "^15.0.0",
"rollup": "^1.32.0",
"ts-node": "^8.6.2"
},
"files": [
"lib",
"dist",
"types",
"index.*",
"README.md"
]
}