-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 2.69 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
{
"name": "abap2ui5",
"private": true,
"version": "1.0.0",
"description": "Developing UI5 Apps purely in ABAP.",
"scripts": {
"clone1": "rm -rf abap2UI5 && git clone --depth=1 https://github.com/abap2UI5/abap2UI5 && cp -r abap2UI5/src src",
"clone2": "rm -rf abap2UI5-samples && git clone --depth=1 https://github.com/abap2UI5/abap2UI5-samples && cp -r abap2UI5-samples/src src/samples",
"clone": "rm -rf src && npm run clone1 && npm run clone2",
"init_abap2ui5": "mkdir src && git clone --depth=1 https://github.com/abap2UI5/abap2UI5.git && cp -r abap2UI5/src/* src/",
"init_samples": "git clone --depth=1 https://github.com/abap2UI5/abap2UI5-samples && cp -r abap2UI5-samples/src src/samples",
"init" : "npm run init_abap2ui5 && npm run init_samples",
"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": "rm -rf downport && cp -r src downport && abaplint --fix ./ci/abaplint-downport.jsonc && npm run syfixes",
"downport_samples": "rm -rf downport && cp -r src downport && abaplint --fix ./ci/abaplint-downport-samples.jsonc && npm run syfixes",
"unit": "echo RUNNING && node output/index.mjs",
"transpile": "rm -rf output && cp srv/*.abap downport && abap_transpile ./ci/abap_transpile.json",
"test": "npm run downport && npm run transpile && npm run unit",
"cleanup": "rm -rf input && rm -rf output",
"express": "node srv/express.mjs",
"webpack:run": "webpack serve --mode development --env development",
"webpack:build": "webpack --mode development --env development",
"build" : "npm ci && npm run downport && npm run transpile && rm -rf src",
"express_play": "node abap2UI5-transpiled/srv/express.mjs",
"init_play": "git clone https://github.com/abap2UI5/abap2UI5-transpiled && cd abap2UI5-transpiled && npm run init && npm run build && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/abap2UI5/abap2UI5.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/abap2UI5/abap2UI5/issues"
},
"homepage": "https://github.com/abap2UI5/abap2UI5#readme",
"devDependencies": {
"@abaplint/cli": "^2.113.16",
"@abaplint/database-sqlite": "^2.10.20",
"@abaplint/runtime": "^2.10.20",
"@abaplint/transpiler-cli": "^2.10.20",
"@types/node": "^22.7.4",
"buffer": "^6.0.3",
"copy-webpack-plugin": "^12.0.2",
"express": "^4.21.0",
"html-webpack-plugin": "^5.6.0",
"path-browserify": "^1.0.1",
"web-encoding": "^1.1.5",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"@playwright/test": "^1.47.2"
},
"dependencies": {
"npm-check-updates": "^17.1.3"
}
}