forked from jwalton/gh-find-current-pr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.61 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
{
"name": "gh-find-current-pr",
"version": "1.3.3",
"description": "GitHub Action for finding the Pull Request (PR) associated with the current SHA.",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"clean": "rm -rf lib dist",
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"all": "npm run format && npm run clean && npm run build && npm run lint && npm run package",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jwalton/gh-find-current-pr.git"
},
"keywords": [
"github",
"actions",
"github actions",
"pull request",
"PR"
],
"author": "Jason Walton",
"license": "MIT",
"bugs": {
"url": "https://github.com/jwalton/gh-find-current-pr/issues"
},
"homepage": "https://github.com/jwalton/gh-find-current-pr#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.42.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.3",
"prettier": "^2.7.1",
"semantic-release": "^19.0.5",
"typescript": "^4.9.3"
}
}