-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.57 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.57 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "commitlint-plugin-function-rules",
"version": "4.3.2",
"description": "commitlint plugin to use functions as rule value",
"keywords": [
"commitlint",
"commitlintplugin",
"function",
"plugin",
"rules"
],
"homepage": "https://github.com/vidavidorra/commitlint-plugin-function-rules#readme",
"bugs": {
"url": "https://github.com/vidavidorra/commitlint-plugin-function-rules/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vidavidorra/commitlint-plugin-function-rules.git"
},
"license": "GPL-3.0-or-later",
"author": "Jeroen de Bruijn",
"type": "module",
"exports": "./dist/index.js",
"files": [
"./dist/**/!(*.test).{js,d.ts,cjs}"
],
"scripts": {
"build": "tsc",
"format": "prettier --ignore-path .gitignore --write \"**/*.{vue,css,less,scss,html,htm,json,md,markdown,yml,yaml}\" --log-level warn",
"format:check": "prettier --ignore-path .gitignore --check \"**/*.{vue,css,less,scss,html,htm,json,md,markdown,yml,yaml}\" --log-level warn",
"lint": "npm run format:check && eslint",
"lint:fix": "npm run format && eslint --fix",
"prepare": "husky .github/husky",
"test": "c8 ava"
},
"prettier": "@vidavidorra/prettier-config",
"release": {
"extends": "@vidavidorra/semantic-release-config"
},
"ava": {
"files": [
"!worktrees",
"src/**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
}
},
"c8": {
"include": [
"dist/**/*.js"
],
"reporter": [
"cobertura",
"html",
"lcovonly",
"text-summary"
]
},
"devDependencies": {
"@ava/typescript": "6.0.0",
"@commitlint/cli": "20.4.3",
"@commitlint/config-conventional": "20.4.3",
"@commitlint/lint-19.x": "npm:@commitlint/lint@19.8.1",
"@commitlint/lint-20.x": "npm:@commitlint/lint@20.4.3",
"@commitlint/load-19.x": "npm:@commitlint/load@19.8.1",
"@commitlint/load-20.x": "npm:@commitlint/load@20.4.3",
"@commitlint/rules": "20.4.3",
"@commitlint/types": "20.4.3",
"@types/sinon": "21.0.0",
"@vidavidorra/eslint-config": "1.0.4",
"@vidavidorra/prettier-config": "1.0.7",
"@vidavidorra/semantic-release-config": "1.0.4",
"ava": "7.0.0",
"c8": "11.0.0",
"eslint": "9.39.4",
"husky": "9.1.7",
"lint-staged": "16.3.3",
"prettier": "3.8.1",
"semantic-release": "25.0.3",
"sinon": "21.0.2",
"typescript": "5.9.3"
},
"peerDependencies": {
"@commitlint/lint": ">=19 <21"
},
"engines": {
"node": ">=20"
}
}