-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.97 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.97 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
{
"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.1-security",
"glob": "^11.0.3",
"os": "^0.1.2",
"path": "^0.12.7",
"tmp": "^0.2.5"
},
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@types/glob": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/mock-fs": "^4.13.4",
"@types/node": "^24.5.2",
"@types/tmp": "^0.2.6",
"@typescript-eslint/eslint-plugin": "^8.44.1",
"@typescript-eslint/parser": "^8.44.1",
"esbuild": "^0.25.10",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"jest": "^30.1.3",
"mock-fs": "^5.5.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.4",
"typescript": "^5.9.2"
}
}