-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.06 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.06 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "deno-module-template",
"version": "0.0.0-development",
"private": true,
"scripts": {
"lint": "textlint ./.build/ISSUE_TEMPLATE/** ./src/** ./docs/** ./README.md ./UPGRADE.md --dry-run",
"lint:fix": "textlint ./.build/ISSUE_TEMPLATE/** ./src/** ./docs/** ./README.md ./UPGRADE.md --fix",
"prepublishOnly": "if [ \"$CI\" = '' ]; then node -p 'JSON.parse(process.env.npm_package_config_manualPublishMessage)'; exit 1; fi"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"manualPublishMessage": "This repository is configured to use semantic-release for its releases. Please do not release manually.\n"
},
"dependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@commitlint/core": "^8.2.0",
"@textlint-rule/textlint-rule-no-invalid-control-character": "^1.2.0",
"@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.7",
"@textlint-rule/textlint-rule-preset-google": "^0.1.2",
"conventional-changelog-conventionalcommits": "^4.3.0",
"cz-conventional-changelog": "^3.0.2",
"husky": "^4.2.5",
"textlint": "^11.6.3",
"textlint-rule-abbr-within-parentheses": "^1.0.2",
"textlint-rule-alex": "^1.3.1",
"textlint-rule-apostrophe": "^2.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-diacritics": "1.0.0",
"textlint-rule-en-capitalization": "^2.0.2",
"textlint-rule-footnote-order": "^1.0.3",
"textlint-rule-helper": "^2.1.1",
"textlint-rule-no-dead-link": "^4.6.2",
"textlint-rule-no-empty-section": "^1.1.0",
"textlint-rule-no-todo": "^2.0.1",
"textlint-rule-terminology": "^2.1.4",
"textlint-rule-write-good": "^1.6.2",
"write-good": "^1.0.2"
},
"devDependencies": {
"minimist": ">=1.2.5",
"yargs-parser": ">=18.1.2"
}
}