-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 1.92 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
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
{
"name": "@octopusdeploy/login",
"version": "1.0.2",
"description": "GitHub action to login to your Octopus Server",
"main": "src/index.ts",
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node20 --minify --outdir=./dist",
"ci:test": "jest --reporters=jest-junit",
"lint:fix": "eslint . --fix",
"lint": "eslint . --no-error-on-unmatched-pattern",
"test": "jest"
},
"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": {
"@types/jest": "29.5.14",
"@types/node": "20.11.30",
"@types/node-fetch": "2.6.11",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"esbuild": "0.20.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "27.9.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-unused-imports": "3.2.0",
"jest": "29.7.0",
"jest-expect-message": "1.1.3",
"jest-extended": "4.0.2",
"jest-junit": "16.0.0",
"jest-runner-eslint": "2.2.1",
"msw": "0.49.0",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"typescript": "4.9.5"
},
"dependencies": {
"@actions/core": "1.10.1",
"node-fetch": "2.7.0"
},
"engines": {
"node": "20.11.1",
"npm": "10.2.5"
},
"jest-junit": {
"outputDirectory": "test-results",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}