-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.75 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
58
59
60
61
62
63
64
{
"name": "node-typescript-library-starter",
"version": "0.1.0",
"description": "A simple starter template for Node.js library written in TypeScript",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]:xg-wang/node-typescript-library-starter.git"
},
"homepage": "https://github.com/xg-wang/node-typescript-library-starter",
"keywords": [
"typescript",
"node",
"starter",
"template",
"boilerplate",
"eslint",
"prettier"
],
"author": "Thomas Wang <[email protected]>",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"docs": "api-extractor run --local --verbose && api-documenter markdown -i ./temp -o ./docs",
"lint": "npm-run-all lint:*",
"lint:eslint": "eslint .",
"lint:tsc": "tsc --noEmit",
"lint:tsc-test": "tsc -p test --noEmit",
"test": "jest",
"prepack": "npm run docs",
"prepare": "husky install && npm run build && npm run docs"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.13.77",
"@microsoft/api-extractor": "^7.19.2",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^8.5.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.4",
"jest": "^27.4.5",
"lint-staged": ">=12",
"nodemon": "^2.0.18",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=14"
},
"volta": {
"node": "16.13.1"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
}
}