-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
27 lines (27 loc) · 959 Bytes
/
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
{
"name": "logger_mirror",
"private": true,
"version": "1.0.0",
"description": "Mirror of (ABAP Logger)[https://github.com/ABAP-Logger/ABAP-Logger] to /MBTOOLS/ namespace",
"main": "index.js",
"scripts": {
"clone": "git clone https://github.com/ABAP-Logger/ABAP-Logger input",
"lint_result": "abaplint abaplint.json",
"fix_result": "abaplint abaplint.json --fix",
"rename": "abaplint abaplint_rename.json --rename && rm -f src/* && cp output/input/src/* src/",
"mirror": "rm -rf input && rm -rf output && npm run clone && npm run rename && npm run fix_result"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Marc-Bernard-Tools/Mirror-LOGGER.git"
},
"author": "Eric Peterson",
"license": "MIT",
"bugs": {
"url": "https://github.com/ABAP-Logger/ABAP-Logger/issues"
},
"homepage": "https://github.com/ABAP-Logger/ABAP-Logger",
"dependencies": {
"@abaplint/cli": "^2.110.1"
}
}