-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.51 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.51 KB
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
{
"name": "@byndyusoft/base-template",
"version": "0.0.0-development",
"description": "Base template for Node.js packages",
"homepage": "https://github.com/Byndyusoft/node-base-template#readme",
"bugs": {
"url": "https://github.com/Byndyusoft/node-base-template/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Byndyusoft/node-base-template.git"
},
"license": "Apache-2.0",
"author": "Byndyusoft",
"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"
},
"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.2",
"semantic-release": "20.1.0"
},
"packageManager": "yarn@4.0.0-rc.37",
"engines": {
"node": ">=14"
},
"publishConfig": {
"access": "public"
}
}