-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
53 lines (53 loc) · 1.38 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
{
"name": "resolve-pr-refs",
"version": "0.0.4",
"description": "",
"main": "index.js",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@octokit/core": "^4.2.0"
},
"devDependencies": {
"@types/jest": "^27.0.3",
"@types/node": "^16.18.102",
"@vercel/ncc": "^0.34.0",
"jest": "^27.3.1",
"standard-version": "^9.5.0",
"ts-jest": "^27.0.7",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.5"
},
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"build": "tsc && ./node_modules/.bin/ncc build lib/index.js --license licenses.txt",
"release": "./node_modules/.bin/standard-version && git push --follow-tags",
"test": "jest",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json"
},
"jest": {
"preset": "ts-jest/presets/default",
"testMatch": [
"**/**/*.test.ts"
],
"setupFiles": [
"./test/setup.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/eficode/resolve-pr-refs.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/eficode/resolve-pr-refs/issues"
},
"homepage": "https://github.com/eficode/resolve-pr-refs#readme"
}