-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.12 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.12 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
41
{
"name": "create-ephemeral-environment",
"version": "1.1.2",
"description": "GitHub Action to create an ephemeral environment in Octopus Deploy",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --outfile=dist/index.js",
"typecheck": "tsc --noEmit",
"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/lodash": "4.17.24",
"@types/node": "24.10.15",
"@typescript-eslint/eslint-plugin": "8.58.0",
"@typescript-eslint/parser": "8.58.0",
"esbuild": "0.25.1",
"eslint": "8.57.1",
"jest": "29.7.0",
"jest-junit": "16.0.0",
"msw": "2.12.14",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"ts-jest": "29.4.9",
"typescript": "5.9.3"
},
"dependencies": {
"@actions/core": "3.0.0",
"@octopusdeploy/api-client": "3.10.2"
}
}