-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.3 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
{
"name": "uploadcompliancestatetask",
"version": "1.0.0",
"description": "Task for updating compliance state",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=16"
},
"main": "dist/index.js",
"scripts": {
"build": "ncc build src/index.ts",
"test": "tsc && mocha dist/tests/",
"testScript": "tsc && mocha dist/tests/ --reporter xunit --reporter-option output=ResultsFile.xml",
"prepare": "husky install",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --fix --ext .ts",
"format:write": "npx prettier -w .",
"format:check": "npx prettier -c ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@azure/identity": "^4.5.0",
"axios": "^1.7.7",
"@vercel/ncc": "^0.38.3"
},
"devDependencies": {
"@types/node": "^22.10.1",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.8",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"chai": "^4.5.0",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"mocha": "^11.0.1",
"prettier": "^3.3.3",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"typescript": "^5.6.3"
}
}