-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
88 lines (88 loc) · 2.53 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
{
"name": "@open-amt-cloud-toolkit/mps",
"version": "2.13.21",
"description": "Containerized MPS service for executing Intel® AMT features",
"homepage": "https://github.com/open-amt-cloud-toolkit/mps",
"contributors": [
{
"name": "Matt C. Primrose",
"email": "matt.c.primrose@intel.com"
},
{
"name": "Michael Johanson",
"email": "michael.johanson@intel.com"
},
{
"name": "Madhavi Losetty",
"email": "madhavi.losetty@intel.com"
}
],
"repository": {
"type": "git",
"url": "https://github.com/open-amt-cloud-toolkit/mps.git"
},
"type": "module",
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"imports": {
"#src/*": "./dist/*"
},
"scripts": {
"build": "tsc --project tsconfig.build.json && genversion dist/utils/version.js --es6",
"compile": "tsc --project tsconfig.build.json && genversion dist/utils/version.js --es6",
"lint": "eslint .",
"start": "npm run build && node ./dist/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --forceExit --coverage",
"prettify": "npx prettier --write '**/*.{ts,js,yaml,css,scss,json}'",
"ci-prettify": "npx prettier --check '**/*.{ts,js,yaml,css,scss,json}'"
},
"dependencies": {
"@open-amt-cloud-toolkit/wsman-messages": "^5.6.10",
"bottleneck": "^2.19.5",
"consul": "^1.2.0",
"cors": "^2.8.5",
"exponential-backoff": "^3.1.1",
"express": "^4.21.1",
"express-validator": "^7.2.0",
"got": "^14.4.4",
"http-z": "^7.0.0",
"jws": "^4.0.0",
"mongodb": "^6.10.0",
"mqtt": "^5.8.1",
"node-forge": "^1.3.1",
"pg": "^8.13.1",
"rc": "^1.2.8",
"winston": "^3.17.0",
"ws": "^8.18.0",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^22.9.0",
"@types/node-forge": "^1.3.11",
"@types/pg": "^8.11.10",
"@types/ws": "^8.5.13",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-license-header": "^0.6.1",
"genversion": "^3.2.0",
"jest": "29.7.0",
"jest-junit": "^16.0.0",
"jest-mock": "^29.7.0",
"jest-transform-stub": "^2.0.0",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-multiline-arrays": "^3.0.6",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "8.14.0"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}