-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.08 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.08 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
{
"name": "@advanced-security/codeql-sap-js_index-cds-files",
"version": "1.0.0",
"description": "CodeQL extractor for DB indexing of .cds.json files produced by the 'cds' compiler.",
"main": "dist/cds-extractor.bundle.js",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"scripts": {
"build": "node esbuild.config.mjs",
"build:all": "npm run lint:fix && npm run test:coverage && npm run build:validate",
"build:tests": "tsc --noEmit",
"build:validate": "npm run prebuild && npm run build && npm run bundle:validate",
"bundle:validate": "node validate-bundle.js",
"clean": "rm -rf coverage dist",
"lint": "eslint --ext .ts cds-extractor.ts src/ test/*.test.ts test/src/",
"lint:fix": "eslint --ext .ts --fix cds-extractor.ts src/ test/*.test.ts test/src/",
"format": "prettier --write 'src/**/*.ts'",
"prebuild": "npm run clean",
"test": "npm run build:tests && jest",
"test:watch": "npm run build:tests && jest --watch",
"test:coverage": "npm run build:tests && jest --coverage"
},
"dependencies": {
"child_process": "^1.0.2",
"fs": "^0.0.2",
"glob": "^13.0.6",
"js-yaml": "^4.1.1",
"minimatch": "^10.2.4",
"os": "^0.1.2",
"path": "^0.12.7",
"tmp": "^0.2.5"
},
"devDependencies": {
"@eslint/compat": "^2.0.3",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"@types/glob": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/minimatch": "^5.1.2",
"@types/mock-fs": "^4.13.4",
"@types/node": "^25.4.0",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"esbuild": "^0.27.3",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^16.5.0",
"jest": "^30.3.0",
"mock-fs": "^5.5.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
}
}