forked from open-amt-cloud-toolkit/mps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.14 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
{
"name": "@open-amt-cloud-toolkit/mps",
"version": "2.6.0",
"description": "Containerized MPS service for executing Intel® AMT features",
"homepage": "https://github.com/open-amt-cloud-toolkit/mps",
"contributors": [
{
"name": "Matt C. Primrose",
"email": "[email protected]"
},
{
"name": "Michael Johanson",
"email": "[email protected]"
},
{
"name": "Madhavi Losetty",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/open-amt-cloud-toolkit/mps.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "tsc",
"compile": "tsc",
"lint": "eslint . --ext .ts",
"start": "npm run build && node ./dist/index.js",
"test": "jest --detectOpenHandles --forceExit --coverage"
},
"dependencies": {
"@open-amt-cloud-toolkit/wsman-messages": "^3.0.4",
"atob": "^2.1.2",
"bottleneck": "^2.19.5",
"consul": "^1.1.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-validator": "^6.14.2",
"got": "^11.8.5",
"http-z": "^6.1.2",
"jws": "^4.0.0",
"mqtt": "^4.3.7",
"node-forge": "^1.3.1",
"pg": "^8.8.0",
"rc": "^1.2.8",
"winston": "^3.8.2",
"ws": "^8.11.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.14",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.15",
"@types/node-forge": "^1.3.0",
"@types/pg": "^8.6.5",
"@types/ws": "^8.5.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-license-header": "^0.6.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.0.0",
"jest": "27.5.1",
"jest-junit": "^14.0.1",
"jest-transform-stub": "^2.0.0",
"ts-jest": "^27.1.4",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
}
}