forked from prince-chrismc/label-merge-conflicts-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.33 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
{
"name": "label-merge-conflicts-action",
"version": "1.1.0-G",
"private": true,
"description": "GitHub Action to automatically label PRs with merge conflicts",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"lint": "eslint --fix src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "yarn format && yarn lint && yarn test && yarn build && yarn package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prince-chrismc/label-merge-conflicts-action.git"
},
"keywords": [
"actions",
"node",
"setup",
"typescript",
"github",
"actions",
"label"
],
"author": "prince-chrismc",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/webhooks-definitions": "^3.67.3"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.14.2",
"@typescript-eslint/parser": "^5.54.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.35.0",
"eslint-plugin-github": "^4.6.1",
"eslint-plugin-jest": "^27.2.1",
"jest": "^28.1.3",
"jest-circus": "^29.4.3",
"js-yaml": "^4.1.0",
"nock": "^13.3.0",
"prettier": "2.8.4",
"ts-jest": "^28.0.8",
"typescript": "^4.9.5"
}
}