-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "@mitre/inspec-objects",
"version": "1.0.1",
"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",
"dev": "npx -y ts-node test.ts",
"test": "jest",
"lint": "eslint \"**/*.ts\" --fix",
"lint:ci": "eslint \"**/*.ts\" --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/flat": "5.0.2",
"@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",
"@types/pretty": "^2.0.1",
"fast-xml-parser": "^3.1.19",
"flat": "5.0.2",
"he": "^1.2.0",
"htmlparser2": "^9.0.0",
"inspecjs": "^2.6.6",
"json-diff": "^1.0.6",
"jstoxml": "^5.0.2",
"lodash": "^4.17.21",
"mustache": "^4.2.0",
"pretty": "^2.0.0",
"winston": "^3.8.1",
"yaml": "^2.3.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^22.5.2",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.30.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tslib": "^2.4.0",
"typescript": "^5.2.2"
},
"jest": {
"rootDir": ".",
"testTimeout": 10000000,
"transform": {
"^.+\\.ts$": "ts-jest"
}
}
}