-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
25 lines (25 loc) · 1.05 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
{
"name": "open-abap-core",
"version": "1.0.0",
"private": true,
"description": "test",
"scripts": {
"lint": "abaplint",
"unit": "rm -rf output && abap_transpile && echo RUNNING && node --expose-gc output/index.mjs && echo OK",
"flame": "0x -o -- node --expose-gc test/performance.mjs",
"performance": "rm -rf output && abap_transpile ./abap_transpile_test.json && node --expose-gc test/performance.mjs",
"integration": "rm -rf output && abap_transpile ./abap_transpile_test.json && node --expose-gc output/index.mjs",
"postgres:init": "cat test/adbc/init.sql | docker exec -i postgresql psql -U postgres -d postgres",
"docker:start": "docker compose -p open-abap -f test/stack.yml up -d --wait && npm run postgres:init",
"test": "npm run lint && npm run unit"
},
"license": "MIT",
"dependencies": {
"@abaplint/cli": "^2.113.99",
"@abaplint/database-pg": "^2.10.24",
"@abaplint/database-sqlite": "^2.10.24",
"@abaplint/runtime": "^2.10.24",
"@abaplint/transpiler-cli": "^2.10.24",
"0x": "^5.8.0"
}
}