-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 937 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 937 Bytes
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
{
"name": "mountain-dev-delete-database-action",
"version": "1.0.0",
"description": "Mountain Dev action to delete preview database on PR close",
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/main.ts -o dist",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"keywords": [
"mountain-dev",
"action",
"database",
"cleanup"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@vercel/ncc": "^0.36.1",
"typescript": "^4.9.5",
"@typescript-eslint/parser": "^5.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.0.0",
"jest": "^27.0.0",
"@types/jest": "^27.0.0",
"ts-jest": "^27.0.0"
},
"packageManager": "pnpm@8.15.1+sha256.245fe901f8e7fa8782d7f17d32b6a83995e2ae03984cb5b62b8949bfdc27c7b5"
}