-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.59 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.59 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "@mitre/heimdall-lite",
"version": "2.10.9",
"description": "Heimdall-Lite 2 is a JavaScript based security results viewer and review tool supporting multiple security results formats, such as: InSpec, SonarQube, OWASP-Zap and Fortify which you can load locally or from S3 and other data sources.",
"repository": {
"type": "git",
"url": "https://github.com/mitre/heimdall2"
},
"license": "Apache-2.0",
"bin": "./src/server.js",
"files": [
"dist",
"src/server.js"
],
"scripts": {
"prebuild": "rimraf ../../dist/frontend",
"build:tailwind": "tailwindcss -i ./src/tailwind.css -o ./public/static/export/style.css --minify",
"build": "yarn build:tailwind && vue-cli-service build",
"lint": "vue-cli-service lint",
"lint:ci": "vue-cli-service lint --no-fix --maxWarnings 0",
"make:component": "vue-cli-service make:component",
"make:directive": "vue-cli-service make:directive",
"make:layout": "vue-cli-service make:layout",
"make:mixin": "vue-cli-service make:mixin",
"make:view": "vue-cli-service make:view",
"prepack": "vue-cli-service build --dest dist && cp ../../README.md README.md && cp package.json package.json.orig && cat package.json.orig | jq '.dependencies = (.dependencies | with_entries(select(.key | contains(\"express\"))))' > package.json",
"postpack": "mv package.json.orig package.json && rm README.md",
"start:dev": "vue-cli-service serve & yarn build:tailwind --watch",
"test": "jest"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.425.0",
"@aws-sdk/client-sts": "^3.427.0",
"@e965/xlsx": "^0.20.0",
"@heimdall/interfaces": "^2.9.3",
"@mdi/font": "^7.0.96",
"@mdi/js": "^7.0.96",
"@types/chroma-js": "^2.1.0",
"@types/concat-stream": "^2.0.0",
"@types/d3": "^7.0.0",
"@types/diff": "^5.0.0",
"@types/file-saver": "^2.0.1",
"@types/lodash": "^4.14.161",
"@types/lru-cache": "^7.10.10",
"@types/luxon": "^3.3.1",
"@types/mustache": "^4.1.1",
"@types/node": "^20.1.0",
"@types/prismjs": "^1.16.1",
"@types/sanitize-html": "^2.3.1",
"@types/triple-beam": "^1.3.2",
"@types/uuid": "^9.0.0",
"@types/vuelidate": "^0.7.13",
"@types/xml-js": "^1.0.0",
"@vue/cli": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.3",
"@vue/cli-plugin-typescript": "^5.0.3",
"@vue/cli-plugin-unit-jest": "~5.0.3",
"@vue/cli-service": "^5.0.8",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"adm-zip": "^0.5.10",
"apexcharts": "^3.10.1",
"axios": "^1.3.5",
"chroma-js": "^2.1.0",
"class-transformer": "^0.5.1",
"concat-stream": "^2.0.0",
"connect": "^3.7.0",
"core-js": "^3.4.1",
"csv-stringify": "^6.4.1",
"d3": "^7.2.0",
"date-fns": "^3.0.0",
"diff": "^5.0.0",
"diff2html": "^3.1.7",
"eslint-plugin-vue": "^9.15.0",
"express": "^4.17.1",
"file-saver": "^2.0.2",
"highlight.js": "^11.0.0",
"html-loader": "^5.0.0",
"inspecjs": "^2.10.8",
"lodash": "4.17.21",
"lru-cache": "^10.1.0",
"luxon": "^3.0.1",
"mustache": "^4.2.0",
"node-polyfill-webpack-plugin": "^2.0.1",
"prismjs": "^1.29.0",
"rimraf": "^5.0.0",
"roboto-fontface": "*",
"sanitize-html": "~2.13.0",
"sass": "~1.32.6",
"sass-loader": "^14.0.0",
"search-query-parser": "^1.5.5",
"semver": "^7.6.0",
"uuid": "^9.0.0",
"vue": "~2.7.16",
"vue-apexcharts": "^1.5.1",
"vue-class-component": "^7.0.2",
"vue-cli-plugin-vuetify": "~2.5.0",
"vue-cookies": "^1.7.4",
"vue-file-agent": "^1.7.3",
"vue-highlightjs": "^1.3.3",
"vue-prism-component": "~1.2.0",
"vue-property-decorator": "^9.0.0",
"vue-router": "~3.5.4",
"vue-svg-inline-loader": "^2.0.0",
"vue-svg-loader": "^0.16.0",
"vue-template-compiler": "~2.7.16",
"vuelidate": "^0.7.5",
"vuetify": "^2.3.9",
"vuetify-loader": "^1.6.0",
"vuex": "^3.1.2",
"vuex-module-decorators": "^1.0.1",
"winston": "^3.6.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@types/adm-zip": "^0.5.0",
"@types/chai": "^4.2.5",
"@types/chai-as-promised": "^7.1.2",
"@types/jest": "^27.0.0",
"@types/sinon": "^17.0.0",
"@vue/test-utils": "^1.0.3",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"html-loader": "^5.0.0",
"jest": "^27.0.6",
"jest-useragent-mock": "^0.1.1",
"sinon": "^18.0.0",
"ts-jest": "^29.1.0",
"vue-jest": "^3.0.7"
},
"engines": {
"node": "^18.19.0"
},
"branch": "/blob/master/",
"changelog": "/releases",
"issues": "/issues/new/choose",
"readme": "README.md"
}