-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
64 lines (64 loc) · 1.81 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
{
"private": true,
"scripts": {
"test": "jest --ci --reporters=default --reporters=jest-junit",
"build": "tsc --noEmit && node esbuild.mjs",
"lint:fix": "eslint . --fix",
"lint": "eslint ."
},
"devDependencies": {
"@tsconfig/node10": "^1.0.9",
"@types/archiver": "^5.3.1",
"@types/command-line-args": "^5.2.0",
"@types/express": "^4.17.13",
"@types/glob": "7.2.0",
"@types/jest": "28.1.5",
"@types/node": "^18.0.4",
"@types/ramda": "0.28.15",
"@types/test-console": "^2.0.0",
"@types/uuid": "8.3.4",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"archiver": "^5.3.1",
"esbuild": "^0.14.49",
"esbuild-copy-static-files": "^0.1.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"express": "^4.18.1",
"jest": "^28.1.3",
"jest-junit": "^14.0.0",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"test-console": "^2.0.0",
"ts-jest": "28.0.5",
"ts-node": "^10.9.0",
"typescript": "^4.7.4",
"yargs": "^17.5.1"
},
"dependencies": {
"@octopusdeploy/api-client": "^3.4.1",
"azure-devops-node-api": "11.2.0",
"azure-pipelines-task-lib": "3.3.1",
"azure-pipelines-tool-lib": "1.3.2",
"command-line-args": "^5.2.1",
"fp-ts": "1.19.5",
"glob": "7.2.0",
"ramda": "0.28.0",
"semver": "^7.3.7",
"shlex": "^2.1.2",
"typed-rest-client": "1.8.9",
"uuid": "8.3.2",
"vss-web-extension-sdk": "5.141.0"
},
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " › ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}