-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.49 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
{
"name": "template_jsdoc_ts",
"version": "1.0.0",
"description": "A template for JSDOC typechecking with Typescript + docs + lint + format + coverage + test",
"main": "src/index.js",
"type": "module",
"types": "types.ts",
"scripts": {
"test": "vitest",
"test:once": "vitest run",
"check": "tsc -p jsconfig.json",
"lint": "eslint src/**/*.{js,ts}",
"build": "vite build -c vitest.config.js",
"format": "prettier --write '**/*.{ts,js}'",
"docs": "npm run clean:docs && typedoc --tsconfig jsconfig.json --plugin typedoc-plugin-missing-exports --logLevel Error",
"clean:docs": "rimraf docs",
"coverage": "vitest run --coverage",
"type-coverage": "typescript-coverage-report -p jsconfig.json",
"postinstall": "husky install",
"prepare": "husky install"
},
"author": "thelinuxlich@gmail.com",
"license": "ISC",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@types/node": "^17.0.21",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"c8": "^7.11.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.2.9",
"husky": "^7.0.0",
"prettier": "^2.6.0",
"rimraf": "^3.0.2",
"typedoc": "^0.22.13",
"typedoc-plugin-missing-exports": "^0.22.6",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"vitest": "^0.10.1"
},
"dependencies": {
"typescript-coverage-report": "^0.6.4"
}
}