-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 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
{
"name": "automate-loadtest-action",
"version": "0.0.1",
"private": true,
"description": "GitHub Action to automate Azure Load Testing",
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "git+https://github.com/azure/load-testing.git"
},
"keywords": [
"actions",
"automate",
"Azure",
"test",
"load",
"JMeter",
"Azloadtest"
],
"author": "Azure Load Testing",
"homepage": "https://github.com/azure/load-testing/blob/main/README.md",
"license": "MIT",
"scripts": {
"compile": "tsc",
"test": "jest --testPathPattern=test --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@types/q": "^1.5.8",
"adal-node": "^0.2.4",
"adm-zip": "^0.5.12",
"extract-zip": "^2.0.1",
"form-data": "^4.0.0",
"js-yaml": "^4.1.0",
"jwt-decode": "^4.0.0",
"path": "^0.12.7",
"typed-rest-client": "^1.8.11"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@types/sinon": "^17.0.4",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"jwt-check-expiration": "^1.0.5",
"ts-jest": "^29.1.2",
"typescript": "^5.4.3",
"sinon": "^19.0.2",
"nock": "^14.0.1"
}
}