-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
54 lines (54 loc) · 1.72 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
{
"name": "conventional-pull-request-action",
"version": "0.2.0",
"description": "Lint pull requests with the conventional commit spec for a clean and conventional commit history",
"main": "main.js",
"scripts": {
"test": "jest ./src",
"tdd": "npm run test -- --watch",
"check": "opensource-check --path ./",
"release": "standard-version --no-verify",
"prepare": "ncc build main.js -o dist --source-map --license licenses.txt"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CondeNast/conventional-pull-request.git"
},
"keywords": [],
"author": "Matt Bedell <[email protected]> (https://bedell.co/)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/CondeNast/conventional-pull-request/issues"
},
"homepage": "https://github.com/CondeNast/conventional-pull-request#readme",
"dependencies": {
"@actions/core": "^1.2.7",
"@actions/github": "^4.0.0",
"@commitlint/config-conventional": "^12.1.3",
"@commitlint/lint": "^12.1.3",
"conventional-changelog-conventionalcommits": "^4.6.0"
},
"devDependencies": {
"@vercel/ncc": "^0.28.5",
"commitlint": "^12.1.4",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.6",
"husky": "^6.0.0",
"jest": "^26.6.3",
"lint-staged": "^11.0.0",
"prettier": "^2.3.0"
},
"optionalDependencies": {
"@condenast/opensource-check": "0.0.5"
},
"lint-staged": {
"*.js": [
"eslint",
"prettier --write --no-editorconfig --no-error-on-unmatched-pattern"
],
"*.md": "prettier --write --no-editorconfig --no-error-on-unmatched-pattern"
}
}