-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.21 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
74
75
76
77
{
"name": "@insurgent/commitlint-config",
"description": "Commitlint config for @insurgent/conventional-changelog-preset",
"version": "20.0.0",
"author": "Mario Nebl <hello@herebecode.com>",
"maintainers": [
"Pierre Cavin <me@sherlox.io>"
],
"license": "MIT",
"type": "module",
"scripts": {
"lint:eslint": "eslint . --ext .js",
"lint:prettier": "prettier ./**/*.{json,md,yml} --check",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:fix": "npm run lint:eslint -- --fix && npm run lint:prettier -- --write",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"test:commitlint": "commitlint --from HEAD~1 --to HEAD --verbose"
},
"engines": {
"node": ">=v16"
},
"dependencies": {
"@insurgent/conventional-changelog-preset": "^10.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/lint": "19.5.0",
"@insurgent/commitlint-config": "file:./",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "10.3.5",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"cross-env": "7.0.3",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prettier": "5.2.1",
"jest": "29.7.0",
"prettier": "3.3.3",
"semantic-release": "24.2.0"
},
"peerDependencies": {
"@commitlint/cli": ">= 19.0.0",
"@commitlint/lint": ">= 19.0.0"
},
"peerDependenciesMeta": {
"@commitlint/cli": {
"optional": true
},
"@commitlint/lint": {
"optional": true
}
},
"homepage": "https://github.com/insurgent-lab/commitlint-config#readme",
"repository": {
"type": "git",
"url": "https://github.com/insurgent-lab/commitlint-config.git"
},
"bugs": {
"url": "https://github.com/insurgent-lab/commitlint-config/issues"
},
"keywords": [
"conventional-changelog",
"commitlint",
"commitlint-config",
"angular"
],
"files": [
"index.js"
],
"publishConfig": {
"access": "public"
}
}