-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1011 Bytes
/
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
{
"name": "dependabot-auto-merge",
"version": "0.2.2",
"main": "index.ts",
"license": "MIT",
"scripts": {
"build": "rm -rf build && esbuild src/index.ts --sourcemap --bundle --platform=node --outfile=build/index.js",
"lint": "eslint --ext ts . --fix",
"start": "ts-node src/index.ts",
"test": "vitest --run"
},
"devDependencies": {
"@actions/core": "1.10.0",
"@actions/github": "5.1.1",
"@fewlines/eslint-config": "3.1.2",
"@types/node": "20.4.5",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"@types/semver": "7.5.0",
"dotenv": "16.3.1",
"eslint": "8.46.0",
"eslint-config-prettier": "8.9.0",
"eslint-plugin-import": "2.28.0",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.8",
"ts-node": "10.9.1",
"typescript": "5.1.6",
"vitest": "0.34.1"
},
"eslintConfig": {
"extends": "@fewlines/eslint-config/typescript"
},
"dependencies": {
"semver": "7.5.4"
}
}