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{
"name": "tsdoc-extractor",
"version": "0.2.0",
"description": "Extract documentation from TypeScript files. Based on deno_doc.",
"author": "Damien ARRACHEQUESNE <damien.arrachequesne@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/darrachequesne/tsdoc-extractor.git"
},
"license": "ISC",
"keywords": [
"documentation",
"typescript",
"jsdoc"
],
"type": "module",
"main": "./src/index.js",
"types": "./src/index.d.ts",
"files": [
"src/"
],
"scripts": {
"format:check": "prettier -c **/*.js **/*.ts",
"format:fix": "prettier -w **/*.js **/*.ts",
"test": "npm run format:check && npm run test:unit",
"test:unit": "nyc mocha"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.1.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1"
}
}