-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.53 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.53 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
{
"version": "1.0.0",
"private": true,
"description": "A sample app to demonstrate Mitre Triage and auto remediation features made in Vue.",
"keywords": [
"javascript",
"vue",
"MITRE",
"foundry-js"
],
"homepage": "https://github.com/CrowdStrike/foundry-sample-mitre#readme",
"bugs": {
"url": "https://github.com/CrowdStrike/foundry-sample-mitre/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/CrowdStrike/foundry-sample-mitre",
"directory": "foundry-sample-mitre"
},
"license": "MIT",
"author": "CrowdStrike Team",
"files": [
"README.md",
"SECURITY.md",
"SUPPORT.md",
"LICENSE",
"CODE_OF_CONDUCT.md",
"CITATION.cff",
"manifest.yml",
"ui",
"collections",
"shared"
],
"workspaces": {
"packages": [
"ui/extensions/remediations",
"ui/pages/chart-vue",
"shared/mitre-vue"
],
"nohoist": [
"ui/**",
"shared/**"
]
},
"scripts": {
"build": "run-p build-extension build-page",
"build-extension": "cd ./ui/extensions/remediations && yarn build",
"build-extension:watch": "cd ./ui/extensions/remediations && yarn build-watch",
"build-page": "cd ./ui/pages/chart-vue && yarn build",
"build-page:watch": "cd ./ui/pages/chart-vue && yarn build-watch",
"build:watch": "run-p build-extension:watch build-page:watch",
"format": "run-p format-extension format-page format-vue-shared",
"format-extension": "cd ./ui/extensions/remediations && yarn run format",
"format-page": "cd ./ui/pages/chart-vue && yarn run format",
"format-vue-shared": "cd ./shared/mitre-vue && yarn run format",
"lint": "run-p lint-extension lint-page lint-vue-shared lint-vue-shared",
"lint-extension": "cd ./ui/extensions/remediations && yarn run lint",
"lint-extension:fix": "cd ./ui/extensions/remediations && yarn run lint:fix",
"lint-page": "cd ./ui/pages/chart-vue && yarn run lint",
"lint-page:fix": "cd ./ui/pages/chart-vue && yarn run lint:fix",
"lint-vue-shared": "cd ./shared/mitre-vue && yarn run lint",
"lint-vue-shared:fix": "cd ./shared/mitre-vue && yarn run lint:fix",
"lint:fix": "run-p lint-extension:fix lint-page:fix lint-vue-shared:fix",
"start": "run-p start-extension start-page",
"start-extension": "cd ./ui/extensions/remediations && yarn start",
"start-page": "cd ./ui/pages/chart-vue && yarn start",
"test": "run-p test-extension:unit test-page:unit test-vue-shared:unit",
"test-extension:unit": "cd ./ui/extensions/remediations && yarn run test:unit",
"test-page:unit": "cd ./ui/pages/chart-vue && yarn run test:unit",
"test-vue-shared:unit": "cd ./shared/mitre-vue && yarn test:unit",
"test:unit": "run-p test-extension:unit test-page:unit test-vue-shared:unit"
},
"dependencies": {
"npm-run-all": "4.1.5"
},
"resolutions": {
"ajv": "6.14.0",
"axios": "1.15.2",
"brace-expansion": "5.0.5",
"diff": "8.0.3",
"flatted": "3.4.2",
"follow-redirects": "1.16.0",
"ip-address": "10.1.1",
"js-yaml": "4.1.1",
"lodash": "4.17.23",
"minimatch": "10.2.4",
"picomatch@npm:^2.3.1": "2.3.2",
"picomatch@npm:^4.0.2": "4.0.4",
"picomatch@npm:^4.0.3": "4.0.4",
"postcss": "8.5.14",
"rollup": "4.59.0",
"tar": "7.5.11",
"tmp": "0.2.4",
"uuid": "13.0.1",
"yaml": "2.8.3"
},
"engines": {
"node": ">=22"
},
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
}