-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.53 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.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
{
"name": "@mitre/hdf-converters",
"version": "2.10.8",
"license": "Apache-2.0",
"description": "Converter util library used to transform various scan results into HDF format",
"files": [
"lib"
],
"main": "src/index.ts",
"publishConfig": {
"main": "lib/bundle.js"
},
"scripts": {
"prepack": "yarn build && node prepack.js",
"postpack": "run-script-os",
"postpack:darwin:linux": "mv package.json.orig package.json",
"postpack:win32": "move package.json.orig package.json",
"build": "yarn build:tailwind && webpack --config ./webpack.config.js --mode production && run-script-os",
"build:tailwind": "tailwindcss -i ./tailwind.css -o ./src/converters-from-hdf/html/style.css --minify",
"build:darwin:linux": "cp -R ./data ./lib",
"build:win32": "xcopy data lib",
"lint": "eslint \"**/*.ts\" --fix",
"lint:ci": "eslint \"**/*.ts\" --max-warnings 0",
"test": "jest",
"csv2json": "tsx data/converters/csv2json.ts",
"xml2json": "tsx data/converters/xml2json.ts"
},
"dependencies": {
"@aws-sdk/client-config-service": "^3.95.0",
"@e965/xlsx": "^0.20.0",
"@mdi/js": "^7.0.96",
"@mitre/jsonix": "^3.0.7",
"@smithy/node-http-handler": "^3.0.0",
"@types/csv2json": "^1.4.2",
"@types/ms": "^0.7.31",
"@types/mustache": "^4.1.2",
"@types/papaparse": "^5.3.2",
"@types/triple-beam": "^1.3.2",
"@types/xml2js": "^0.4.9",
"axios": "^1.3.5",
"compare-versions": "^6.0.0",
"csv2json": "^2.0.2",
"fast-xml-parser": "^4.2.0",
"html-entities": "^2.3.2",
"htmlparser2": "^9.1.0",
"inspecjs": "^2.10.8",
"lodash": "^4.17.21",
"moment": "^2.29.1",
"ms": "^2.1.3",
"mustache": "^4.2.0",
"papaparse": "^5.3.1",
"run-script-os": "^1.1.6",
"semver": "^7.6.0",
"tailwindcss": "^3.3.3",
"tw-elements": "^1.1.0",
"winston": "^3.6.0",
"xml-formatter": "^3.6.2",
"xml-parser-xo": "^4.1.1",
"xml2js": "^0.6.0",
"yaml": "^2.1.1"
},
"devDependencies": {
"@types/jest": "^27.0.0",
"@types/lodash": "^4.14.161",
"@types/node": "^20.1.0",
"html-loader": "^5.0.0",
"jest": "^27.0.6",
"quicktype": "^15.0.260",
"raw-loader": "^4.0.2",
"ts-jest": "^29.1.0",
"ts-loader": "^9.5.1",
"tsx": "^4.7.1",
"typedoc": "^0.25.0",
"webpack": "^5.92.0",
"webpack-cli": "^5.1.4"
},
"jest": {
"moduleNameMapper": {
"axios": "axios/dist/node/axios.cjs"
},
"rootDir": ".",
"testTimeout": 10000000,
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}