forked from CondeNast/conventional-pull-request-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.77 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
{
"name": "conventional-pull-request-action",
"version": "0.3.1",
"type": "module",
"description": "Lint pull requests with the conventional commit spec for a clean and conventional commit history",
"keywords": [],
"homepage": "https://github.com/CondeNast/conventional-pull-request#readme",
"bugs": {
"url": "https://github.com/CondeNast/conventional-pull-request/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CondeNast/conventional-pull-request.git"
},
"license": "Apache-2.0",
"author": "Matt Bedell <matt@bedell.co> (https://bedell.co/)",
"contributors": [
"Patrick Heneise <https://patrickheneise.com>"
],
"main": "src/main.js",
"engines": {
"node": ">=24"
},
"scripts": {
"check": "opensource-check --path ./",
"prepare": "ncc build src/main.js -o dist --source-map --license licenses.txt",
"release": "standard-version --no-verify",
"tdd": "node --test --watch --experimental-test-module-mocks test/*.spec.js",
"test": "node --test --experimental-test-module-mocks test/*.spec.js"
},
"lint-staged": {
"*.js": [
"oxlint",
"prettier --write --no-editorconfig --no-error-on-unmatched-pattern"
],
"*.md": "prettier --write --no-editorconfig --no-error-on-unmatched-pattern"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"@commitlint/config-conventional": "^20.5.0",
"@commitlint/lint": "^20.5.0",
"conventional-changelog-conventionalcommits": "^9.3.1"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"commitlint": "^20.5.0",
"husky": "^9.0.11",
"lint-staged": "^15.5.2",
"oxlint": "^0.16.6",
"prettier": "^3.2.5"
},
"optionalDependencies": {
"@condenast/opensource-check": "0.0.5"
}
}