forked from chinthakagodawita/autoupdate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.78 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
55
56
57
58
59
60
61
62
63
64
65
{
"name": "autoupdate-action",
"version": "1.0.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.5.0",
"@actions/github": "^5.0.0",
"@octokit/types": "^6.31.3",
"@octokit/webhooks": "^9.12.0",
"@octokit/webhooks-definitions": "^3.67.3",
"@types/node": "^16.10.2",
"@vercel/ncc": "^0.28.6",
"ttypescript": "^1.5.12",
"typescript": "^4.4.2"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.31.2",
"@typescript-eslint/parser": "^4.31.2",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^26.6.3",
"jest-ts-auto-mock": "^2.0.0",
"nock": "^13.1.3",
"prettier": "^2.3.2",
"ts-auto-mock": "^3.5.0",
"ts-jest": "^26.5.6"
},
"jest": {
"clearMocks": true,
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageProvider": "v8",
"globals": {
"ts-jest": {
"compiler": "ttypescript"
}
},
"preset": "ts-jest",
"setupFiles": [
"<rootDir>/test/config.ts"
],
"testEnvironment": "node",
"transform": {
".(ts|tsx)": "ts-jest"
}
}
}