-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.59 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.59 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
94
95
96
97
98
99
100
101
102
103
{
"name": "danger-plugin-conventional-commitlint",
"description": "lint commit messages with danger and commitlint",
"author": {
"name": "Nick Cacace",
"email": "NickCacace@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/BearAlliance/danger-plugin-conventional-commitlint"
},
"bugs": {
"url": "https://github.com/BearAlliance/danger-plugin-conventional-commitlint/issues"
},
"homepage": "https://github.com/BearAlliance/danger-plugin-conventional-commitlint#readme",
"keywords": [
"danger",
"danger-plugin",
"commitlint",
"lint",
"conventional"
],
"version": "0.0.0-development",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"build": "rimraf dist/ && tsc",
"test": "npm run prettier:check && npm run lint && npm run test:unit",
"test:unit": "jest",
"prepublishOnly": "npm run build",
"prettier:check": "prettier --check --ignore-path .gitignore .",
"prettier:write": "prettier --write --ignore-path .gitignore .",
"lint": "eslint \"src/**/*.ts\"",
"prepare": "husky install"
},
"license": "MIT",
"engines": {
"node": ">=20"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"provenance": true
},
"files": [
"dist/"
],
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^24.10.4",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"babel-jest": "^30.2.0",
"commitizen": "4.3",
"cz-conventional-changelog": "3.3",
"danger": "*",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"semantic-release": "^25.0.2",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"lint-staged": {
"*.@(ts|tsx)": [
"npm run lint -- --fix"
],
"*.@(ts|tsx|js|jsx|json|md|yml)": [
"prettier --write"
]
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
],
"^.+\\.js$": "babel-jest"
},
"transformIgnorePatterns": [
"node_modules/(?!(@commitlint|semver)/)"
]
},
"dependencies": {
"@commitlint/lint": "^20.2.0"
}
}