-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.77 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
{
"name": "base-boilerplate",
"private": true,
"description": "Basic boilerplate repository to be reused for a variety of JavaScript-based projects.",
"main": "index.js",
"scripts": {
"bootstrap:ci": "yarn install --frozen-lockfile --ignore-engines",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "yarn lint:secrets && yarn lint:md && yarn lint:prettier",
"lint:secrets": "npx secretlint **/*",
"lint:md": "markdownlint --fix **/*.md --ignore node_modules --ignore **/CHANGELOG.md",
"lint:prettier": "prettier --write .",
"prepare": "husky install",
"commit": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/waldronmatt/base-boilerplate.git"
},
"keywords": [
"template",
"boilerplate",
"configurations",
"markdownlint",
"commitizen",
"commitlint",
"semantic-release",
"husky",
"secretlint",
"prettier",
"yamllint",
"actionlint",
"lint-staged"
],
"author": "Matthew Waldron",
"license": "MIT",
"bugs": {
"url": "https://github.com/waldronmatt/base-boilerplate/issues"
},
"homepage": "https://github.com/waldronmatt/base-boilerplate#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@waldronmatt/commitlint-config": "^1.1.4",
"@waldronmatt/lint-staged-config": "^2.0.0",
"@waldronmatt/markdownlint-config": "^1.0.2",
"@waldronmatt/prettier-config": "^1.3.1",
"@waldronmatt/secretlint-config": "^1.0.1",
"@waldronmatt/semantic-release-config": "^2.0.1",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"markdownlint": "^0.26.2",
"prettier": "^2.7.1",
"secretlint": "^5.2.4",
"semantic-release": "^19.0.5"
}
}