forked from ExpediaGroup/github-helpers
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.28 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.28 KB
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
66
67
68
69
70
71
72
73
74
{
"name": "github-helpers",
"main": "src/main.ts",
"private": true,
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "6.0.0",
"@adobe/node-fetch-retry": "2.2.0",
"@octokit/request": "8.1.5",
"@octokit/rest": "20.0.2",
"axios": "1.6.0",
"bluebird": "3.7.2",
"codeowners-utils": "1.0.2",
"js-yaml": "4.1.0",
"lodash.camelcase": "4.3.0",
"lodash.chunk": "4.2.0",
"lodash.samplesize": "4.2.0",
"lodash.union": "4.6.0",
"lodash.uniq": "4.5.0",
"micromatch": "4.0.5",
"typescript": "5.2.2"
},
"devDependencies": {
"@octokit/plugin-rest-endpoint-methods": "10.0.1",
"@swc/jest": "0.2.29",
"@total-typescript/ts-reset": "0.5.1",
"@types/bluebird": "3.5.41",
"@types/jest": "29.5.8",
"@types/js-yaml": "4.0.8",
"@types/lodash.camelcase": "4.3.9",
"@types/lodash.chunk": "4.2.8",
"@types/lodash.samplesize": "4.2.9",
"@types/lodash.union": "4.6.8",
"@types/lodash.uniq": "4.5.9",
"@types/micromatch": "4.0.4",
"@types/node": "20.8.10",
"@types/node-fetch": "2.6.9",
"@typescript-eslint/eslint-plugin": "6.11.0",
"@vercel/ncc": "0.38.1",
"eslint": "8.45.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-functional": "6.0.0",
"eslint-plugin-github": "4.9.2",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-prettier": "5.0.1",
"eslint-plugin-promise": "6.1.1",
"husky": "8.0.3",
"jest": "29.7.0",
"plop": "4.0.0",
"prettier": "3.1.0"
},
"jest": {
"transform": {
"^.+\\.(t|j)sx?$": "@swc/jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"clearMocks": true
},
"scripts": {
"build": "tsc",
"clean": "rm -rf build dist",
"create-helper": "plop helper --force",
"format": "prettier --write ./**/**/*.ts",
"format-check": "prettier --check ./**/**/*.ts",
"generate": "deno run -A scripts/generate-helper-inputs.ts",
"lint": "eslint --quiet --fix ./**/*.ts src/**/*.ts test/**/*.ts",
"package": "npm run clean && ncc build --source-map --license licenses.txt && cp action.yml dist",
"prepare": "husky install",
"setup": "./scripts/dev-setup.sh",
"test": "jest"
}
}