generated from exercism/generic-test-runner
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.09 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
{
"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 || 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.10.10",
"@abaplint/transpiler": "^2.10.10",
"@abaplint/cli": "^2.113.4",
"@abaplint/runtime": "^2.10.10"
},
"devDependencies": {
"@types/chai": "^4.3.19",
"@types/mocha": "^10.0.7",
"chai": "^4.5.0",
"mocha": "^10.7.3",
"source-map-support": "^0.5.21",
"typescript": "^5.5.4",
"@types/node": "^22.5.3"
}
}