-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 810 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 810 Bytes
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
{
"name": "mocha",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"scripts": {
"test": "mocha",
"test:spec": "mocha --reporter spec",
"test:json": "mocha --reporter json > test-results.json",
"test:mochawesome": "mocha --reporter mochawesome --reporter-options reportDir=reports,reportFilename=test-report"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"aws4": "^1.13.2",
"chai": "^6.0.1",
"dotenv": "^17.2.1",
"mocha": "^11.7.1",
"mochawesome": "^7.1.3",
"nock": "^14.0.10",
"node-fetch": "^3.3.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.879.0",
"@aws-sdk/s3-request-presigner": "^3.876.0",
"canvas": "^3.2.0",
"pdfkit": "^0.17.2",
"uuid": "^11.1.0"
}
}