-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 KB
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
{
"name": "deprovision-ephemeral-environment",
"version": "1.0.1",
"description": "GitHub Action to deprovision an ephemeral environment in Octopus Deploy",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"postbuild": "ncc build out/index.js -o dist",
"test": "jest",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"clean": "rimraf dist"
},
"keywords": [
"github-action",
"octopus-deploy",
"ephemeral-environment"
],
"author": "Octopus Deploy",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "24.10.13",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"@vercel/ncc": "0.38.4",
"eslint": "8.57.1",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"msw": "2.11.6",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"ts-jest": "29.4.6",
"typescript": "5.9.3"
},
"dependencies": {
"@actions/core": "1.11.1",
"@octopusdeploy/api-client": "3.10.2"
}
}