-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.1 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.1 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
{
"name": "@exercism/abap-test-runner",
"private": true,
"description": "Automated Test runner for exercism solutions in ABAP.",
"version": "0.1.0",
"license": "AGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/exercism/abap-test-runner"
},
"directories": {
"lib": "./dist",
"test": "./test"
},
"bin": {
"abap-test-runner": "bin/run.sh"
},
"scripts": {
"build": "tsc --outDir ./dist && git clone --depth=1 https://github.com/open-abap/open-abap-core || true",
"test": "npm run build && mocha"
},
"mocha": {
"recursive": true,
"timeout": 60000,
"spec": "dist/test/**/*.js",
"require": "source-map-support/register"
},
"dependencies": {
"@abaplint/transpiler-cli": "^2.13.5",
"@abaplint/transpiler": "^2.13.5",
"@abaplint/cli": "^2.118.8",
"@abaplint/runtime": "^2.13.5"
},
"devDependencies": {
"@types/chai": "^4.3.20",
"@types/mocha": "^10.0.10",
"chai": "^4.5.0",
"mocha": "^11.7.5",
"source-map-support": "^0.5.21",
"typescript": "^5.9.3",
"@types/node": "^24.12.0"
}
}