-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
73 lines (73 loc) · 1.98 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@crowdstrike/commitlint",
"version": "8.0.1",
"description": "commitlint settings for CrowdStrike",
"bin": {
"commitlint": "bin/index.js"
},
"main": "src",
"files": [
"bin",
"src"
],
"scripts": {
"lint:git": "commitlint --default-branch main",
"lint:js": "eslint . --ext js,json",
"lint:md": "remark -f README.md",
"release": "standard-version --commit-all",
"test": "mocha --recursive"
},
"standard-version": {
"scripts": {
"prerelease": "yargs-help-output README.md --npm-script-name lint:git",
"precommit": "git add README.md",
"posttag": "git push --follow-tags --atomic"
}
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/CrowdStrike/commitlint.git"
},
"keywords": [
"conventional-changelog"
],
"author": "Kelly Selden",
"license": "MIT",
"bugs": {
"url": "https://github.com/CrowdStrike/commitlint/issues"
},
"homepage": "https://github.com/CrowdStrike/commitlint#readme",
"engines": {
"node": ">=18.12"
},
"dependencies": {
"@commitlint/config-conventional": "^18.0.0",
"@commitlint/format": "^18.0.0",
"@commitlint/lint": "^18.0.0",
"@commitlint/load": "^18.0.0",
"@commitlint/read": "^18.0.0",
"commitlint-format-junit": "^1.1.4",
"debug": "^4.1.1",
"execa": "^8.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"@crowdstrike/commitlint": "file:",
"chai": "^4.3.0",
"eslint": "^8.0.0",
"eslint-config-crowdstrike": "10.1.0",
"eslint-config-crowdstrike-node": "3.0.1",
"eslint-plugin-json-files": "^4.0.0",
"eslint-plugin-mocha": "^10.0.0",
"eslint-plugin-node": "^11.0.0",
"git-fixtures": "^8.0.0",
"mocha": "^10.0.0",
"mocha-helpers": "^9.0.0",
"remark-cli": "^12.0.0",
"remark-preset-lint-crowdstrike": "^4.0.0",
"renovate-config-standard": "^2.0.0",
"standard-node-template": "6.0.0",
"standard-version": "^9.1.0",
"yargs-help-output": "^5.0.0"
}
}