-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.33 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.33 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
{
"name": "commitlint-config-bloq",
"version": "1.1.1",
"description": "Shareable commitlint config as we do at Bloq",
"keywords": [
"bloq",
"commitlint",
"commitlint-config",
"commitlintplugin",
"config",
"git"
],
"bugs": "https://github.com/bloq/commitlint-config-bloq/issues",
"license": "MIT",
"author": "Gabriel Montes <gabriel@bloq.com>",
"files": [
"src",
"src-cjs"
],
"main": "src/index.js",
"repository": "bloq/commitlint-config-bloq",
"scripts": {
"format:check": "prettier --check .",
"lint": "eslint --cache .",
"prepare": "husky",
"prepublishOnly": "babel src/index.js --out-file src-cjs/index.cjs"
},
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/core": "^7.25.8",
"@babel/plugin-transform-modules-commonjs": "^7.25.7",
"@commitlint/cli": "^19.5.0",
"babel-plugin-add-module-exports": "^1.0.4",
"better-sort-package-json": "^1.0.0",
"eslint": "^8.57.1",
"eslint-config-bloq": "^4.2.0",
"eslint-plugin-markdownlint": "^0.6.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3"
},
"peerDependencies": {
"@commitlint/cli": ">=18.6.0"
},
"engines": {
"node": ">=16.9.0"
},
"type": "module",
"exports": {
"import": "./src/index.js",
"require": "./src-cjs/index.cjs"
}
}