-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
38 lines (38 loc) · 1.17 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
{
"name": "@tfso/action-deployment",
"version": "1.0.0",
"description": "",
"main": "dist/deploy/index.js",
"files": [
"dist/delete/index.js",
"delete/action.yml"
],
"scripts": {
"test": "vitest run --config ./src/tests/vitest.config.ts",
"build": "concurrently \"npm run build:deploy\" \"npm run build:delete\"",
"build:delete": "esbuild src/delete.ts --bundle --outfile=dist/delete/index.js --platform=node",
"build:deploy": "esbuild src/index.ts --bundle --outfile=dist/deploy/index.js --platform=node",
"lint": "eslint"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/exec": "1.1.0",
"@actions/github": "^5.0.0",
"google-spreadsheet": "^3.2.0",
"node-fetch": "2.6.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@types/node": "^17.0.17",
"@types/node-fetch": "^2.6.3",
"@types/semver": "^7.3.9",
"concurrently": "^8.0.1",
"esbuild": "0.14.11",
"eslint": "^8.7.0",
"typescript": "^4.5.5",
"vitest": "^0.34.1"
}
}