-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
103 lines (103 loc) · 2.92 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@open-amt-cloud-toolkit/rps",
"version": "2.22.14",
"description": "Containerized RPS service for activating and configuring Intel® AMT devices",
"homepage": "https://github.com/open-amt-cloud-toolkit/rps",
"contributors": [
{
"name": "Matt C. Primrose",
"email": "[email protected]"
},
{
"name": "Michael Johanson",
"email": "[email protected]"
},
{
"name": "Madhavi Losetty",
"email": "[email protected]"
},
{
"name": "Brian Osburn",
"email": "[email protected]"
},
{
"name": "Mudit Vats",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/open-amt-cloud-toolkit/rps.git"
},
"license": "Apache-2.0",
"engines": {
"node": ">=20"
},
"type": "module",
"exports": "./index.js",
"scripts": {
"compile": "tsc --project tsconfig.build.json && genversion dist/utils/version.js --es6",
"build": "npm run compile",
"start": "tsc && node ./dist/Index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --forceExit --coverage",
"watch": "nodemon -e ts -w ./src -x npm run start",
"lint": "eslint .",
"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",
"body-parser": "^1.20.2",
"consul": "^1.2.0",
"cors": "^2.8.5",
"crypto-random-string": "^3.3.1",
"exponential-backoff": "^3.1.1",
"express": "^4.21.2",
"express-promise-router": "^4.1.1",
"express-validator": "^7.2.0",
"express-ws": "^5.0.2",
"got": "^14.4.5",
"http-z": "^7.0.0",
"minimist": "^1.2.8",
"mqtt": "^5.10.3",
"node-forge": "^1.3.1",
"pg": "^8.13.1",
"pg-format": "^1.0.4",
"rc": "^1.2.8",
"winston": "^3.17.0",
"ws": "^8.18.0",
"xml2js": "^0.6.2",
"xstate": "^5.19.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/consul": "^0.40.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/node-forge": "^1.3.11",
"@types/pg": "^8.11.10",
"@types/ws": "^8.5.13",
"eslint": "^9.16.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-sinon": "^1.1.0",
"jest-transform-stub": "^2.0.0",
"nodemon": "^3.1.7",
"prettier-config-standard": "^7.0.0",
"prettier-plugin-multiline-arrays": "^3.0.6",
"sinon": "^19.0.2",
"ts-jest": "^29.2.5",
"ts-jest-mock-import-meta": "^1.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "8.15.0"
},
"optionalDependencies": {
"fsevents": "^2.3.3"
}
}