-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.35 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
{
"name": "autodev-action",
"version": "v2.1.0",
"description": "Github Action that tries to merge all commits from a PR with the dev label into the dev branch.",
"type": "module",
"scripts": {
"format": "prettier --write '**/*.ts'",
"format-check": "prettier --check '**/*.ts'",
"lint": "eslint src/**/*.ts",
"package": "ncc build src/index.ts --source-map --license licenses.txt",
"test": "vitest run",
"test:watch": "vitest",
"all": "pnpm run format && pnpm run lint && pnpm run package && pnpm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Staffbase/autodev-action.git"
},
"keywords": [
"actions",
"git",
"auto-dev",
"auto-merge"
],
"author": "Staffbase GmbH",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.10.0"
},
"devDependencies": {
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@babel/parser": "^7.26.2",
"@eslint/js": "^9.14.0",
"@octokit/openapi-types": "^22.2.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.9.0",
"@vercel/ncc": "^0.38.2",
"eslint": "^9.14.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"js-yaml": "^4.1.0",
"prettier": "3.3.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.3"
},
"packageManager": "[email protected]"
}