forked from chinthakagodawita/autoupdate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.4 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
{
"name": "autoupdate-action",
"version": "1.7.0",
"description": "A GitHub Action that auto-updates PRs with changes from their base branch.",
"main": "src/autoupdater.ts",
"repository": "https://github.com/chinthakagodawita/autoupdate",
"author": "Chin Godawita <[email protected]>",
"license": "MIT",
"bin": {
"autoupdate-action": "bin/cli.js"
},
"scripts": {
"build": "ncc build bin/cli.ts --out dist",
"lint": "eslint . && prettier --list-different bin/*.ts src/*.ts test/*.ts",
"lint:fix": "eslint --fix .",
"test": "jest",
"test:watch": "jest --watchAll"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@octokit/types": "^9.0.0",
"@octokit/webhooks": "^10.7.0",
"@octokit/webhooks-types": "^6.10.0",
"@types/node": "^18.15.10",
"@vercel/ncc": "^0.36.1",
"ttypescript": "^1.5.15",
"typescript": "^4.9.5"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"jest-ts-auto-mock": "^2.1.0",
"nock": "^13.1.3",
"prettier": "^2.8.7",
"ts-auto-mock": "^3.6.4",
"ts-jest": "^29.0.5"
}
}