-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.23 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
{
"name": "test-reporting-action",
"description": "GitHub Action for reporting test data",
"author": "D2L Corporation",
"license": "Apache-2.0",
"type": "module",
"scripts": {
"prebuild": "rimraf dist/",
"build": "ncc build src/index.js --minify --out dist/",
"license-check": "d2l-license-checker -p",
"lint": "npm run lint:eslint && npm run lint:editorconfig",
"lint:eslint": "eslint",
"lint:editorconfig": "editorconfig-checker",
"fix": "npm run fix:eslint",
"fix:eslint": "npm run lint:eslint -- --fix",
"test": "npm run lint && npm run test:unit",
"test:unit": "c8 mocha"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@actions/core": "^1",
"@aws-sdk/client-sts": "^3",
"@aws-sdk/client-timestream-write": "^3",
"d2l-test-reporting": "^4"
},
"devDependencies": {
"@eslint/compat": "^1",
"@vercel/ncc": "^0.38",
"aws-sdk-client-mock": "^4",
"c8": "^10",
"chai": "^5",
"d2l-license-checker": "^4",
"editorconfig-checker": "^6",
"eslint": "^9",
"eslint-config-brightspace": "^2",
"eslint-plugin-json": "^4",
"eslint-plugin-mocha": "^10",
"globals": "^15",
"mocha": "^11",
"rimraf": "^6",
"sinon": "^19"
}
}