-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 2.47 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 2.47 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
{
"name": "abap2UI5-samples",
"private": true,
"version": "1.0.0",
"description": "Learn how to code with abap2UI5.",
"scripts": {
"test": "npm run check",
"launchpad": "node scripts/generate-launchpad.mjs && node scripts/generate-samples-md.mjs && node scripts/generate-catalogue.mjs && node scripts/generate-derived.mjs",
"derived": "node scripts/generate-derived.mjs",
"catalogue": "node scripts/generate-catalogue.mjs",
"lint": "abaplint ./abaplint.jsonc",
"check:cloud": "abaplint .github/abaplint/abap_cloud.jsonc",
"check:abap2ui5": "abap2ui5lint",
"fmt:chains": "abap2ui5lint --fix",
"check:agents": "node scripts/check-agents-structure.mjs",
"check:orphans": "node scripts/check-orphan-samples.mjs",
"check:keywords": "node scripts/check-keywords.mjs",
"check:launchpad": "node scripts/generate-launchpad.mjs --check && node scripts/generate-samples-md.mjs --check",
"check:catalogue": "node scripts/generate-catalogue.mjs --check && node scripts/check-catalogue-contract.mjs",
"check:derived": "node scripts/generate-derived.mjs --check",
"check:prose": "node scripts/check-prose-names.mjs",
"check:docs-links": "node scripts/check-docs-links.mjs",
"check:app-rules": "node scripts/check-app-rules.mjs",
"check:atc": "node scripts/check-atc.mjs",
"check:pin": "node scripts/check-framework-pin.mjs",
"rename": "abaplint .github/abaplint/rename_test.jsonc --rename",
"syfixes": "find . -type f -name '*.abap' -exec sed -i -e 's/ RAISE EXCEPTION TYPE cx_sy_itab_line_not_found/ ASSERT 1 = 0/g' {} + ",
"downport": "abaplint --fix .github/abaplint/abap_702.jsonc && npm run syfixes && node scripts/generate-samples-md.mjs",
"check": "npm run check:pin && npm run lint && npm run check:cloud && npm run check:abap2ui5 && npm run check:agents && npm run check:orphans && npm run check:keywords && npm run check:launchpad && npm run check:catalogue && npm run check:derived && npm run check:prose && npm run check:docs-links && npm run check:app-rules && npm run check:atc && npm run rename"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abap2UI5/samples.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/abap2UI5/samples/issues"
},
"homepage": "https://github.com/abap2UI5/samples#readme",
"devDependencies": {
"@abap2ui5/linter": "^0.6.1",
"@abap2ui5/render-runtime": "^0.6.1",
"@abaplint/cli": "^2.120.59"
},
"engines": {
"node": ">=22"
}
}