forked from cbush/docdoctor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "docdoctor",
"version": "0.1.2",
"description": "Fix up rST",
"main": "./build/index.js",
"bin": {
"docdoctor": "./build/main.js"
},
"scripts": {
"clean": "rm -rf build",
"build": "tsc -b",
"watch": "tsc -b -w",
"test": "jest",
"verbose": "jest --verbose",
"coverage": "jest --coverage",
"docs": "npx typedoc --excludePrivate --exclude '**/*.test.ts' --out docs src",
"release": "release-it",
"prerelease": "npm run clean && npm run build && npm run test && npm run docs"
},
"author": "Chris Bush",
"license": "MIT",
"devDependencies": {
"@babel/preset-typescript": "^7",
"@types/glob": "^8.0.0",
"@types/jest": "^26",
"@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^4",
"@typescript-eslint/parser": "^4",
"eslint": "^6",
"eslint-config-prettier": "^6",
"eslint-plugin-prettier": "^3",
"eslint-plugin-tsdoc": "^0.2.14",
"jest": "^26",
"prettier": "^2",
"release-it": "^16.1.5",
"ts-jest": "^26.5.6",
"typedoc": "^0",
"typescript": "^4"
},
"dependencies": {
"glob": "^8.0.3",
"magic-string": "^0.26.2",
"restructured": "^0.0.11",
"toml": "^3.0.0",
"tree-visit": "^0.1.2",
"yargs": "^15.4.1"
}
}