-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.99 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.99 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@octopusdeploy/login",
"version": "2.0.0",
"description": "GitHub action to login to your Octopus Server",
"main": "src/index.ts",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node24 --minify --outfile=dist/index.js",
"ci:test": "jest --reporters=jest-junit",
"lint:fix": "eslint . --fix",
"lint": "eslint . --no-error-on-unmatched-pattern",
"test": "jest",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OctopusDeploy/login.git"
},
"keywords": [
"github",
"actions",
"octopus"
],
"author": "Octopus Deploy",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OctopusDeploy/login/issues"
},
"homepage": "https://github.com/OctopusDeploy/login#readme",
"devDependencies": {
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.4",
"@types/jest": "29.5.14",
"@types/node": "24.7.2",
"@types/node-fetch": "2.6.13",
"@typescript-eslint/eslint-plugin": "8.57.0",
"@typescript-eslint/parser": "8.57.0",
"@typescript-eslint/utils": "8.57.0",
"esbuild": "0.25.12",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-unused-imports": "4.4.1",
"globals": "16.5.0",
"jest": "29.7.0",
"jest-expect-message": "1.1.3",
"jest-extended": "4.0.2",
"jest-junit": "16.0.0",
"prettier": "3.8.1",
"ts-jest": "29.4.6",
"typescript": "5.9.3"
},
"dependencies": {
"@actions/core": "3.0.0",
"node-fetch": "2.7.0"
},
"engines": {
"node": "20.19.6",
"npm": "10.9.7"
},
"jest-junit": {
"outputDirectory": "test-results",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}