-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 941 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 941 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
{
"name": "@ts-docs/extractor",
"version": "3.1.0",
"description": "Extracts modules, classes, interfaces, enums, type aliases and constants from typescript projects.",
"main": "dist/index.js",
"devDependencies": {
"@types/node": "^16.4.2",
"@typescript-eslint/eslint-plugin": "^4.28.4",
"@typescript-eslint/parser": "^4.28.4",
"eslint": "^7.31.0",
"jest": "^27.4.7",
"typescript": "^4.6.2"
},
"scripts": {
"run": "tsc && node .",
"test": "jest --collect-coverage",
"prepublishOnly": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleFeud/ts-extractor.git"
},
"keywords": [
"typescript",
"AST",
"generator",
"types",
"extractor"
],
"author": "GoogleFeud",
"license": "MIT",
"bugs": {
"url": "https://github.com/GoogleFeud/ts-extractor/issues"
},
"homepage": "https://github.com/GoogleFeud/ts-extractor#readme"
}