-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
89 lines (89 loc) Β· 2.5 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
86
87
88
89
{
"author": "Octopus Deploy",
"bugs": {
"url": "https://github.com/OctopusDeploy/api-client.ts/issues"
},
"dependencies": {
"adm-zip": "^0.5.9",
"axios": "^1.2.1",
"form-data": "^4.0.0",
"glob": "^8.0.3",
"lodash": "^4.17.21",
"semver": "^7.3.8",
"urijs": "^1.19.11"
},
"description": "TypeScript API client for Octopus Deploy",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@tsconfig/node20": "^20.1.2",
"@types/adm-zip": "^0.5.0",
"@types/glob": "^8.0.0",
"@types/jest": "^29.2.4",
"@types/json-patch": "^0.0.30",
"@types/lodash": "^4.14.191",
"@types/node": "^20.10.4",
"@types/semver": "^7.3.13",
"@types/urijs": "^1.19.19",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"dotenv": "^16.4.5",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-expect-message": "^1.1.3",
"jest-extended": "^3.2.0",
"jest-junit": "^15.0.0",
"jest-runner-eslint": "^1.1.0",
"prettier": "^2.8.1",
"process": "^0.11.10",
"prop-types": "^15.8.1",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typedoc": "^0.23.22",
"typescript": "^4.9.4"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/OctopusDeploy/api-client.ts#readme",
"keywords": [
"api",
"client",
"node",
"octopus deploy"
],
"license": "Apache-2.0",
"main": "dist/index.js",
"module": "dist/index.js",
"name": "@octopusdeploy/api-client",
"repository": {
"type": "git",
"url": "https://github.com/OctopusDeploy/api-client.ts.git"
},
"scripts": {
"build": "tsc --p tsconfig.json",
"docs": "typedoc --options typedoc.json --readme none",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"prepare": "npm run build",
"preversion": "npm run lint",
"test": "jest --maxWorkers=4 --config=jest.config.js --ci --reporters=default --reporters=jest-junit"
},
"types": "dist/index.d.ts",
"version": "3.4.1",
"jest-junit": {
"outputDirectory": "reports",
"outputName": "jest-junit.xml",
"ancestorSeparator": " βΊ ",
"uniqueOutputName": "false",
"suiteNameTemplate": "{filepath}",
"classNameTemplate": "{classname}",
"titleTemplate": "{title}"
}
}