-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 KB
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
{
"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.1.0",
"typescript-logging": "2.2.0",
"vss-web-extension-sdk": "5.141.0",
"@babel/helpers": "^7.27.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.6.3"
},
"overrides": {
"codecov": {
"js-yaml": "4.1.1"
},
"@humanwhocodes/config-array": {
"minimatch": "3.1.4"
},
"@eslint/eslintrc": {
"minimatch": "3.1.4"
}
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
}
}