-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.41 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
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
{
"name": "@open-amt-cloud-toolkit/mps",
"version": "2.35.0",
"description": "Containerized MPS service for executing Intel® AMT features",
"homepage": "https://github.com/device-management-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/device-management-toolkit/mps.git"
},
"type": "module",
"license": "Apache-2.0",
"engines": {
"node": ">=22"
},
"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": "vitest run --coverage",
"test:watch": "vitest",
"prettify": "npx prettier --write '**/*.{ts,js,yaml,css,scss,json}'",
"ci-prettify": "npx prettier --check '**/*.{ts,js,yaml,css,scss,json}'"
},
"dependencies": {
"@device-management-toolkit/wsman-messages": "^6.1.4",
"bottleneck": "^2.19.5",
"cors": "^2.8.6",
"exponential-backoff": "^3.1.3",
"express": "^4.22.2",
"express-validator": "^7.3.2",
"got": "^16.0.0",
"http-z": "7.0.0",
"jws": "^4.0.1",
"mongodb": "^7.6.0",
"mqtt": "^5.15.2",
"node-forge": "^1.4.0",
"pg": "^8.23.0",
"rc": "^1.2.8",
"winston": "^3.19.0",
"ws": "^8.21.3",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/body-parser": "^1.19.6",
"@types/express": "^4.17.21",
"@types/node": "^26.4.1",
"@types/node-forge": "^1.3.12",
"@types/pg": "^8.23.1",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^5.0.0",
"eslint": "^10.10.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-license-header": "^0.9.0",
"genversion": "^3.2.0",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-multiline-arrays": "^4.1.11",
"ts-node": "^10.9.2",
"typescript": "^5.8.3",
"typescript-eslint": "8.69.0",
"vitest": "^5.0.0"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
},
"overrides": {
"qs": "^6.16.0"
}
}