-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.58 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
50
51
52
53
54
55
56
57
{
"name": "typedoc-plugin-missing-check",
"version": "0.4.0",
"description": "TypeDoc plugin to check for missing or empty documentation.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"scripts": {
"build": "tsc",
"self-doc": "npm run fix && npm run build && typedoc --plugin . src/",
"fix": "eslint --fix src/*",
"lint": "eslint src/*",
"test": "jest --passWithNoTests",
"qa": "npm run fix && npm run lint && npm run test",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neozenith/typedoc-plugin-missing-check.git"
},
"keywords": [
"typedocplugin",
"typedoc"
],
"author": "Josh Peak",
"license": "MIT",
"bugs": {
"url": "https://github.com/neozenith/typedoc-plugin-missing-check/issues"
},
"homepage": "https://joshpeak.net/typedoc-plugin-missing-check/",
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"peerDependencies": {
"typedoc": "^0.20.36"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.23.0",
"@typescript-eslint/parser": "^4.23.0",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"prettier": "^2.3.0",
"ts-jest": "^26.5.6",
"typedoc": "^0.20.36",
"typescript": "^4.2.4"
}
}