-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.53 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.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
{
"name": "@mitre/inspec-objects",
"version": "2.3.0",
"description": "Typescript objects for normalizing between InSpec profiles and XCCDF benchmarks",
"main": "lib/index.js",
"publishConfig": {
"main": "lib/index.js"
},
"scripts": {
"build": "tsc -p ./tsconfig.build.json",
"test": "vitest",
"test:ci": "vitest run",
"lint": "eslint --fix",
"lint:ci": "eslint --max-warnings 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mitre/ts-inspec-objects.git"
},
"author": "The MITRE Security Automation Framework",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/mitre/ts-inspec-objects/issues"
},
"homepage": "https://github.com/mitre/ts-inspec-objects#readme",
"dependencies": {
"@types/he": "^1.1.2",
"@types/json-diff": "^1.0.0",
"@types/jstoxml": "^2.0.2",
"@types/lodash": "^4.14.178",
"@types/mustache": "^4.2.0",
"fast-xml-parser": "^5.0.7",
"he": "^1.2.0",
"htmlfy": "^1.0.1",
"htmlparser2": "^12.0.0",
"inspecjs": "^2.6.6",
"json-diff": "^1.0.6",
"jstoxml": "^7.0.1",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"tslib": "^2.8.1",
"winston": "^3.8.1",
"yaml": "^2.3.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.9.0",
"@types/node": "^25.3.0",
"eslint": "^10.0.2",
"eslint-plugin-n": "^17.24.0",
"eslint-plugin-unicorn": "^64.0.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.1"
}
}