generated from ExpediaGroup/new-project
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
74 lines (74 loc) · 2.25 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
66
67
68
69
70
71
72
73
74
{
"name": "github-helpers",
"main": "src/main.ts",
"private": true,
"dependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@adobe/node-fetch-retry": "2.2.0",
"@octokit/request": "6.2.2",
"@octokit/rest": "19.0.7",
"axios": "1.3.4",
"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": "4.6.4"
},
"devDependencies": {
"@octokit/types": "9.0.0",
"@total-typescript/ts-reset": "0.3.7",
"@types/axios": "0.14.0",
"@types/bluebird": "3.5.38",
"@types/jest": "28.1.7",
"@types/js-yaml": "4.0.5",
"@types/lodash.camelcase": "4.3.7",
"@types/lodash.chunk": "4.2.7",
"@types/lodash.samplesize": "4.2.7",
"@types/lodash.union": "4.6.7",
"@types/lodash.uniq": "4.5.7",
"@types/micromatch": "4.0.2",
"@vercel/ncc": "0.36.1",
"eslint": "8.15.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-functional": "5.0.4",
"eslint-plugin-github": "4.4.0",
"eslint-plugin-i18n-text": "1.0.1",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "27.1.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-typescript": "0.14.0",
"husky": "8.0.3",
"jest": "28.1.3",
"plop": "3.1.2",
"prettier": "2.8.0",
"ts-jest": "28.0.8"
},
"jest": {
"transform": {
"^.+\\.(j|t)sx?$": "ts-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"
}
}