generated from cxpsemea/repo_template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.29 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"private": true,
"license": "MIT",
"name": "cxsast_custom_reporting",
"version": "1.2.3",
"author": "Marcelo Pereira <[email protected]>",
"contributors": [
"Hugo Mota <[email protected]>"
],
"description": "A CxSAST satellite application that allows users to generate custom reporting",
"repository": "https://github.com/cxpsemea/cxsast_custom_reporting.git",
"bugs": "https://github.com/cxpsemea/cxsast_custom_reporting/issues",
"homepage": "https://github.com/cxpsemea/cxsast_custom_reporting#readme",
"keywords": [
"checkmarx",
"sast",
"report",
"scan",
"post-scan"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"scripts": {
"dev": "npm run dev:summary",
"dev:summary": "nodemon --watch source --exec ts-node source/main.ts --projectXmlReport ./report.xml --reportAudience [email protected],[email protected]",
"dev:consolidated": "nodemon --watch source --exec ts-node source/main.ts --reportType consolidated --projectName 'Consolidated Test' --projectNamePattern ReportTesting% --reportAudience [email protected],[email protected]",
"docs": "docsify serve ./docs",
"commit": "git-cz",
"ci:release": "semantic-release --verbose",
"build": "npm run build:clean; npm run build:code; npm run build:binary",
"build:clean": "rm -rf ./build",
"build:code": "tsc --project ./tsconfig.json",
"build:binary": "pkg --targets node12-win-x64 ./build/main.js --output ./build/dist/cxsat_custom_reporting"
},
"dependencies": {
"dateformat": "5.0.2",
"handlebars": "4.7.7",
"line-reader": "0.4.0",
"lodash": "4.17.21",
"log4js": "6.4.1",
"mssql": "8.0.2",
"nodemailer": "6.7.2",
"properties-reader": "2.2.0",
"puppeteer-core": "13.3.2",
"sanitize-filename": "1.6.3",
"validator": "13.7.0",
"yargs": "17.3.1"
},
"devDependencies": {
"@commitlint/cli": "16.2.1",
"@commitlint/config-conventional": "16.2.1",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/commit-analyzer": "9.0.2",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "8.0.2",
"@semantic-release/npm": "9.0.0",
"@semantic-release/release-notes-generator": "10.0.3",
"@types/dateformat": "5.0.0",
"@types/flat": "5.0.2",
"@types/fs-extra": "9.0.13",
"@types/jest": "27.4.0",
"@types/line-reader": "0.0.34",
"@types/lodash": "4.14.178",
"@types/mssql": "7.1.4",
"@types/node": "17.0.17",
"@types/nodemailer": "6.4.4",
"@types/properties-reader": "2.1.1",
"@types/puppeteer-core": "5.4.0",
"@types/validator": "13.7.1",
"@types/yargs": "17.0.8",
"commitizen": "^4.2.4",
"conventional-changelog-conventionalcommits": "^4.6.3",
"cz-conventional-changelog": "3.3.0",
"docsify-cli": "^4.4.3",
"flat": "5.0.2",
"fs-extra": "10.0.0",
"husky": "7.0.4",
"jest": "27.5.1",
"nodemon": "2.0.15",
"pkg": "5.5.2",
"semantic-release": "19.0.2",
"ts-jest": "27.1.3",
"ts-loader": "9.2.6",
"ts-node": "10.5.0",
"tslint": "6.1.3",
"tslint-config-prettier": "1.18.0",
"typedoc": "0.22.11",
"typescript": "4.5.5"
}
}