forked from CondeNast/conventional-pull-request-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.87 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
{
"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 <[email protected]> (https://bedell.co/)",
"contributors": [
"Patrick Heneise <https://patrickheneise.com>"
],
"main": "main.js",
"scripts": {
"check": "opensource-check --path ./",
"prepare": "ncc build main.js -o dist --source-map --license licenses.txt",
"release": "standard-version --no-verify",
"tdd": "npm run test -- --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js ./test"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write --no-editorconfig --no-error-on-unmatched-pattern"
],
"*.md": "prettier --write --no-editorconfig --no-error-on-unmatched-pattern"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/lint": "^19.1.0",
"conventional-changelog-conventionalcommits": "^7.0.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"commitlint": "^19.2.1",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5"
},
"optionalDependencies": {
"@condenast/opensource-check": "0.0.5"
}
}