generated from ExpediaGroup/new-project
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.47 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.47 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
{
"name": "github-helpers",
"packageManager": "bun@1.3.8",
"main": "src/main.ts",
"type": "module",
"private": true,
"dependencies": {
"@actions/core": "3.0.0",
"@actions/github": "9.0.0",
"@octokit/graphql-schema": "15.26.1",
"@octokit/plugin-retry": "8.0.3",
"axios": "1.13.4",
"bluebird": "3.7.2",
"codeowners-utils": "1.0.2",
"js-yaml": "4.1.1",
"lodash": "4.17.23",
"micromatch": "4.0.8",
"simple-git": "3.30.0"
},
"devDependencies": {
"@octokit/webhooks-types": "7.6.1",
"@total-typescript/ts-reset": "0.6.1",
"@types/bluebird": "3.5.42",
"@types/bun": "1.3.8",
"@types/js-yaml": "4.0.9",
"@types/lodash.camelcase": "4.3.9",
"@types/lodash.chunk": "4.2.9",
"@types/lodash.samplesize": "4.2.9",
"@types/lodash.union": "4.6.9",
"@types/lodash.uniq": "4.5.9",
"@types/micromatch": "4.0.10",
"@vercel/ncc": "0.38.4",
"eslint": "10.0.0",
"husky": "9.1.7",
"plop": "4.0.5",
"prettier": "3.8.1",
"typescript": "5.9.3",
"typescript-eslint": "8.54.0"
},
"scripts": {
"create-helper": "plop helper --force",
"format": "prettier --write .",
"format-check": "prettier --check .",
"generate": "bun scripts/generate-helper-inputs.ts",
"lint": "eslint --quiet --fix ./**/*.ts src/**/*.ts test/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"prepare": "husky",
"setup": "./scripts/dev-setup.sh",
"test": "bun test"
}
}