-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.39 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
{
"name": "cydig-compliance-action",
"description": "Action for cydig compliance controls",
"version": "1.0.0",
"author": "",
"keywords": [],
"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 ."
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@octokit/plugin-retry": "^6.0.1",
"@octokit/rest": "^20.1.1",
"@vercel/ncc": "^0.36.1",
"azure-devops-node-api": "^14.1.0"
},
"devDependencies": {
"@octokit/types": "^13.5.0",
"@types/chai": "^4.3.6",
"@types/mocha": "^10.0.6",
"@types/node": "^22.7.4",
"@types/sinon": "^17.0.3",
"@types/sinon-chai": "^3.2.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chai": "^4.4.1",
"eslint": "^8.49.0",
"husky": "^9.1.7",
"mocha": "^10.4.0",
"prettier": "^2.8.8",
"sinon": "^19.0.2",
"sinon-chai": "^3.7.0",
"typescript": "^5.4.5"
}
}