generated from Byndyusoft/node-base-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.31 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
{
"name": "node-renovate-config",
"version": "0.0.0-development",
"private": true,
"description": "Renovate config for Node.js",
"homepage": "https://github.com/Byndyusoft/node-renovate-config#readme",
"bugs": {
"url": "https://github.com/Byndyusoft/node-renovate-config/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Byndyusoft/node-renovate-config.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}\""
},
"devDependencies": {
"@commitlint/cli": "17.0.3",
"@commitlint/config-conventional": "17.0.3",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"markdownlint-cli": "0.32.0",
"prettier": "2.7.1",
"prettier-plugin-packagejson": "2.2.18"
},
"engines": {
"node": ">=14"
}
}