-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
77 lines (77 loc) · 2.02 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
{
"name": "mercury-composable",
"version": "4.2.27",
"description": "Composable foundation SDK",
"type": "module",
"engines": {
"node": ">= 20.18.1"
},
"main": "./dist/index.js",
"author": "Eric Law <eric.law@accenture.com>",
"license": "Apache-2.0",
"scripts": {
"clean": "node clean.js",
"prebuild": "npm run lint",
"build": "tsc -p tsconfig.json && node copy-resource-files.js",
"build:watch": "tsc -w -p tsconfig.json",
"lint": "eslint . --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --detectOpenHandles",
"test:watch": "jest --watch"
},
"dependencies": {
"@types/body-parser": "^1.19.5",
"@types/busboy": "^1.5.4",
"@types/cookie-parser": "^1.4.8",
"@types/express": "^5.0.0",
"@types/uuid": "^10.0.0",
"axios": "^1.8.2",
"body-parser": "^1.20.3",
"busboy": "^1.6.0",
"cookie-parser": "^1.4.7",
"events": "^3.3.0",
"express": "^4.21.2",
"form-data": "^4.0.2",
"msgpackr": "^1.11.2",
"tslib": "~2.8.1",
"uuid": "^11.1.0",
"yaml": "^2.7.0"
},
"devDependencies": {
"@eslint/js": "^9.22.0",
"@jest/globals": "^29.7.0",
"@jest/types": "^29.6.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.26.1",
"@typescript-eslint/parser": "^8.26.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "~28.11.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-tsdoc": "^0.4.0",
"glob": "^11.0.1",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsutils": "~3.21.0",
"typescript": "~5.8.2",
"typescript-eslint": "^8.26.1"
},
"overrides": {
"@jest/reporters": {
"glob": "^11.0.1"
},
"jest-config": {
"glob": "^11.0.1"
},
"jest-runtime": {
"glob": "^11.0.1"
},
"test-exclude": {
"glob": "^11.0.1"
}
}
}