-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.1 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
45
46
47
48
49
{
"name": "react-tsdoc",
"version": "1.3.5",
"author": "Noah Buscher",
"description": "CLI to extract information from React Typescript component files with TSDoc for documentation generation purposes",
"repository": {
"type": "git",
"url": "https://github.com/noahbuscher/react-tsdoc"
},
"license": "MIT",
"keywords": [
"documentation-generation",
"react",
"tsdoc",
"typescript"
],
"files": [
"bin",
"lib"
],
"engines": {
"node": ">=12.0.0"
},
"main": "lib/parser.js",
"bin": {
"react-tsdoc": "./bin/react-tsdoc.js"
},
"scripts": {
"build": "rimraf lib/ && npm run build:ts",
"build:ts": "tsc --project tsconfig.build.json",
"test": "jest"
},
"dependencies": {
"@microsoft/tsdoc": "^0.13.2",
"ts-morph": "^13.0.2",
"yargs": "^17.3.1"
},
"devDependencies": {
"@babel/preset-env": "^7.16.8",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.8",
"babel-jest": "^27.4.6",
"jest": "^27.4.6",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
}
}