-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
85 lines (85 loc) · 2.27 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"author": "Octopus Deploy",
"bugs": {
"url": "https://github.com/OctopusDeploy/push-build-information-action/issues"
},
"dependencies": {
"@actions/core": "1.10.1",
"@actions/github": "5.1.1",
"@octokit/webhooks-types": "6.10.0",
"@octopusdeploy/api-client": "3.4.1"
},
"description": "GitHub Action to Push Build Information to Octopus Deploy",
"devDependencies": {
"@types/jest": "29.5.14",
"@types/node": "20.17.6",
"@types/tmp": "0.2.6",
"@typescript-eslint/parser": "5.62.0",
"@vercel/ncc": "0.36.1",
"eslint": "8.57.1",
"eslint-plugin-github": "4.6.1",
"eslint-plugin-jest": "27.9.0",
"jest": "29.7.0",
"jest-circus": "29.7.0",
"jest-junit": "15.0.0",
"js-yaml": "4.1.0",
"prettier": "2.8.8",
"tmp": "0.2.3",
"ts-jest": "29.2.5",
"typescript": "4.9.5"
},
"homepage": "https://github.com/OctopusDeploy/push-build-information-action#readme",
"jest": {
"clearMocks": true,
"collectCoverage": true,
"moduleFileExtensions": [
"js",
"ts"
],
"setupFiles": [
"<rootDir>/src/test-setup.ts"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"testRunner": "jest-circus/runner",
"testTimeout": 10000,
"transform": {
"^.+\\.ts$": "ts-jest"
},
"verbose": true
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeperator": " > ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
},
"keywords": [
"cli",
"deployment",
"octopus-deploy",
"github-actions"
],
"license": "Apache-2.0",
"main": "src/index.ts",
"name": "push-build-information-action",
"repository": {
"type": "git",
"url": "git+https://github.com/OctopusDeploy/push-build-information-action.git"
},
"scripts": {
"all": "npm run format && npm run build && npm test",
"build": "tsc --newLine lf",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"prebuild": "eslint src/**/*.ts",
"postbuild": "ncc build out/index.js -o dist",
"test": "jest --ci --reporters=default --reporters=jest-junit"
},
"version": "3.2.2"
}