-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1.08 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
{
"name": "checkmarx-ast-azure-plugin",
"version": "0.0.0",
"description": "Add Secure Static Source Code Analysis inside your build process",
"main": "index.js",
"repository": "https://github.com/checkmarx/ast-azure-plugin",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "tsc -b cxAstScan/tsconfig.json && tsc -b ui/enhancer/tsconfig.json",
"test": "npm run build && mocha cxAstScan/dist/test/_suite.js --exit",
"coverage": "nyc npm run test",
"lint": "eslint . --ext .ts",
"lint-and-fix": "eslint . --ext .ts --fix"
},
"author": "Jay Nanduri",
"license": "SEE LICENSE IN checkmarx-license-terms.md",
"dependencies": {
"nyc": "^17.0.0",
"typescript-logging": "2.2.0",
"vss-web-extension-sdk": "5.141.0"
},
"devDependencies": {
"@types/mocha": "10.0.7",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"mocha": "10.7.0",
"typescript": "5.5.4"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}