-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
41 lines (41 loc) · 1.33 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
{
"name": "@waldronmatt/shareable-configs",
"private": true,
"author": "Matthew Waldron",
"repository": {
"type": "git",
"url": "git+https://github.com/waldronmatt/shareable-configs.git"
},
"workspaces": [
"packages/*"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/waldronmatt/shareable-configs/issues"
},
"homepage": "https://github.com/waldronmatt/shareable-configs#readme",
"scripts": {
"lint": "yarn lint:md && yarn lint:js && yarn lint:secrets",
"lint:md": "markdownlint --fix **/*.md --ignore node_modules --ignore **/CHANGELOG.md",
"lint:js": "eslint --fix **/*.js",
"lint:secrets": "npx secretlint **/*",
"commit": "git-cz",
"bootstrap:ci": "yarn install --frozen-lockfile --ignore-engines",
"version:ci": "lerna version --yes --conventional-commits --create-release github --message 'chore(release): publish'",
"publish:ci": "lerna publish from-package --yes --no-verify-access",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.24.0",
"husky": "^8.0.1",
"lerna": "^6.0.1",
"lint-staged": "^13.0.3",
"markdownlint": "^0.30.0",
"prettier": "^2.7.1",
"secretlint": "^6.2.0",
"syncyarnlock": "^1.0.19"
}
}