-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
70 lines (70 loc) · 3.51 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
66
67
68
69
70
{
"name": "transpiler-top-level",
"private": true,
"version": "1.0.0",
"description": "proof of concept",
"scripts": {
"install": "npm install && cd web/transpiler && npm install && cd ../../ && cd packages/runtime && npm install && cd ../cli && npm install && cd ../transpiler && npm install && cd ../database-snowflake && npm install && cd ../database-pg && npm install && cd ../database-sqlite && npm install && cd ../rfc-client-soap-xml && npm install && cd ../..",
"compile": "cd packages/runtime && npm run compile && cd ../../ && cd packages/transpiler && npm run compile && cd ../../ && cd packages/cli && npm run compile && cd ../../ && cd packages/database-pg && npm run compile && cd ../../ && cd packages/database-sqlite && npm run compile && cd ../../ && cd packages/database-snowflake && npm run compile && cd ../../ && tsc",
"performance": "npm run compile && node --expose-gc build/performance/index.js",
"test": "npm run compile && mocha --timeout 10000 && npm run lint",
"regression": "node .github/regression/regression.js",
"link-local": "npm run link:transpiler && npm run link:cli && npm run link:runtime && npm run link:rfc-client-soap-xml && npm run link:database-sqlite && npm run link:database-pg && npm run link:database-snowflake",
"link:transpiler": "cd packages/transpiler && npm link",
"link:runtime": "cd packages/runtime && npm link",
"link:rfc-client-soap-xml": "cd packages/rfc-client-soap-xml && npm link @abaplint/runtime",
"link:database-sqlite": "cd packages/database-sqlite && npm link @abaplint/runtime",
"link:database-pg": "cd packages/database-pg && npm link @abaplint/runtime",
"link:database-snowflake": "cd packages/database-snowflake && npm link @abaplint/runtime",
"link:cli": "cd packages/cli && npm link --force && npm link @abaplint/transpiler",
"docker:start": "docker compose -p transpiler -f test/stack.yml up -d",
"docker:stop": "docker compose -p transpiler -f test/stack.yml down -v",
"lint": "eslint packages/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abaplint/transpiler_poc.git"
},
"mocha": {
"recursive": true,
"reporter": "progress",
"spec": [
"packages/*/build/test/**/*.js",
"build/test/**/*.js"
],
"require": "source-map-support/register"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/abaplint/transpiler_poc/issues"
},
"homepage": "https://github.com/abaplint/transpiler_poc#readme",
"devDependencies": {
"@abaplint/core": "^2.113.82",
"@eslint/compat": "^1.2.4",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.2",
"@types/sql.js": "^1.4.9",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"chai": "^4.5.0",
"cross-fetch": "^4.0.0",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"fast-xml-parser": "^4.5.1",
"globals": "^15.13.0",
"mocha": "^11.0.1",
"pg": "^8.13.1",
"pg-cursor": "^2.12.1",
"snowflake-sdk": "^1.15.0",
"source-map-support": "^0.5.21",
"sql.js": "^1.12.0",
"temporal-polyfill": "^0.2.5",
"typescript": "^5.7.2"
}
}