generated from Byndyusoft/node-base-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.64 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
{
"name": "@byndyusoft/tsconfig",
"version": "0.0.0-development",
"description": "TSConfig for Byndyusoft projects",
"homepage": "https://github.com/Byndyusoft/tsconfig#readme",
"bugs": {
"url": "https://github.com/Byndyusoft/tsconfig/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Byndyusoft/tsconfig.git"
},
"license": "Apache-2.0",
"author": "Byndyusoft",
"files": [
"tsconfig*.json"
],
"scripts": {
"postinstall": "husky install",
"lint": "yarn run lint:markdown && yarn run lint:prettier",
"lint:fix": "yarn run lint:markdown:fix && yarn run lint:prettier:fix",
"lint:markdown": "markdownlint --ignore-path ./.gitignore \"./**/*.md\"",
"lint:markdown:fix": "markdownlint --ignore-path ./.gitignore --fix \"./**/*.md\"",
"lint:prettier": "prettier --ignore-path ./.gitignore --check \"./**/*.{ts,js,json,yaml,yml,md}\"",
"lint:prettier:fix": "prettier --ignore-path ./.gitignore --write \"./**/*.{ts,js,json,yaml,yml,md}\"",
"prepublishOnly": "pinst --disable",
"postpublish": "pinst --enable"
},
"dependencies": {
"@tsconfig/node16": "^1.0.3",
"@tsconfig/node18": "^1.0.1",
"@tsconfig/node20": "^20.1.4"
},
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"husky": "8.0.3",
"lint-staged": "13.1.0",
"markdownlint-cli": "0.33.0",
"pinst": "3.0.0",
"prettier": "2.8.3",
"prettier-plugin-packagejson": "2.4.0",
"semantic-release": "20.0.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}