-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 2.03 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
{
"name": "mergebot",
"version": "1.0.0",
"description": "GitHub Action that automates merging Dependabot PRs",
"main": "lib/index.js",
"scripts": {
"build": "tsc",
"build:check": "npm run build -- --noEmit",
"build:watch": "npm run build -- --watch",
"clean": "rimraf",
"clean:package": "npm run clean -- lib && npm run clean -- dist",
"lint": "eslint **/*.ts",
"lint:fix": "npm run lint -- --fix",
"package": "npm run clean:package && npm run build && npm run package:single",
"package:single": "ncc build --out dist --minify --source-map --v8-cache",
"test": "jest",
"test:ci": "npm run test -- --ci",
"test:coverage": "npm run test -- --collect-coverage",
"test:watch": "npm run test:coverage -- --watch --verbose false",
"workflow:test": "npm run build:check && npm run lint && npm run test:ci",
"prepare": "husky",
"husky:pre-commit": "lint-staged"
},
"engines": {
"node": "20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/e-conomic/mergebot.git"
},
"keywords": [],
"author": "Visma e-conomic",
"license": "MIT",
"bugs": {
"url": "https://github.com/e-conomic/mergebot/issues"
},
"homepage": "https://github.com/e-conomic/mergebot#readme",
"dependencies": {
"@actions/core": "1.11.1",
"@actions/github": "6.0.0",
"@octokit/auth-app": "7.1.0",
"@octokit/rest": "20.1.1",
"find-versions": "6.0.0",
"semver-diff": "4.0.0"
},
"devDependencies": {
"@babel/preset-env": "7.26.0",
"@types/jest": "29.5.14",
"@types/node": "22.9.0",
"@typescript-eslint/eslint-plugin": "7.17.0",
"@typescript-eslint/parser": "7.18.0",
"@vercel/ncc": "0.38.2",
"babel-jest": "29.7.0",
"eslint": "8.57.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-promise": "6.6.0",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"rimraf": "6.0.1",
"ts-jest": "29.2.5",
"typescript": "5.5.4"
}
}