-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
70 lines (70 loc) · 2.04 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
{
"name": "@cyclonedx/authoring-tool",
"version": "1.0.0-SNAPSHOT",
"description": "The CycloneDX Authoring Tool (CAT) is user interface for manually creating, editing, and viewing CycloneDX SBOMs.",
"author": "Steve Springett",
"homepage": "https://cyclonedx.org/",
"copyright": "Copyright OWASP Foundation",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:CycloneDX/cyclonedx-authorimg-tool.git"
},
"scripts": {
"start": "npm run serve",
"serve": "npm run prebuild && vue-cli-service serve",
"prebuild": "node update-embedded-version.js",
"build": "npm run prebuild && vue-cli-service build && npm run bom",
"lint": "vue-cli-service lint",
"bom": "cyclonedx-bom -o bom.xml"
},
"dependencies": {
"@babel/polyfill": "^7.8.7",
"@coreui/coreui": "^2.1.16",
"@coreui/icons": "0.4.1",
"@coreui/vue": "^2.1.2",
"@johmun/vue-tags-input": "^2.1.0",
"bootstrap": "^4.4.1",
"bootstrap-table": "1.15.5",
"bootstrap-vue": "2.5.0",
"core-js": "^2.6.9",
"css-vars-ponyfill": "^2.2.1",
"font-awesome": "^4.7.0",
"jquery": "^3.4.1",
"perfect-scrollbar": "^1.4.0",
"simple-line-icons": "^2.4.1",
"vee-validate": "^3.2.5",
"vue": "^2.6.10",
"vue-bootstrap-toggle": "^1.1.4",
"vue-debounce": "^2.5.1",
"vue-i18n": "^8.15.5",
"vue-multipane": "^0.9.5",
"vue-perfect-scrollbar": "^0.2.1",
"vue-router": "^3.1.6",
"vue-splitpane": "^1.0.6",
"vue-toastr": "^2.1.2",
"vuescroll": "^4.15.0"
},
"devDependencies": {
"@cyclonedx/bom": "^1.1.3",
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^3.12.1",
"babel-core": "^7.0.0-bridge.0",
"growl": "^1.10.5",
"https-proxy-agent": "^2.2.4",
"node-sass": "^4.13.0",
"sass-loader": "^8.0.2",
"uuid": "^7.0.2",
"vue-template-compiler": "^2.6.10"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 10"
],
"engines": {
"node": ">= 8.10.x",
"npm": ">= 5.6.0"
}
}