-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.22 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
{
"name": "amt-explorer",
"version": "0.0.1",
"description": "Utility for sending messages to and receiving responses from AMT",
"main": "index.js",
"scripts": {
"test": "jest --detectOpenHandles --forceExit --coverage",
"start": "tsc && node ./dist/index.js",
"compile": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matt-primrose/amt-explorer.git"
},
"keywords": [
"amt",
"wsman-messages"
],
"author": "Matt C. Primrose",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/matt-primrose/amt-explorer/issues"
},
"homepage": "https://github.com/matt-primrose/amt-explorer#readme",
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.17",
"@types/express-brute": "^1.0.2",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.9",
"@types/ws": "^8.5.5",
"jest": "^29.6.2",
"jest-junit": "^16.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@open-amt-cloud-toolkit/wsman-messages": "^5.5.0",
"body-parser": "^1.20.2",
"digest-fetch": "^3.1.0",
"express": "^4.18.2",
"express-brute": "^1.0.1",
"http-z": "^6.1.2",
"xml2js": "^0.6.2"
}
}