-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
28 lines (28 loc) · 1.02 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
{
"name": "aff_mirror",
"private": true,
"version": "1.0.0",
"description": "Mirror of aff",
"main": "index.js",
"scripts": {
"clone": "git clone https://github.com/SAP/abap-file-formats input && rm input/file-formats/*/examples/* && rm input/file-formats/*.json && rm input/file-formats/*/type/*.json",
"lint_result": "abaplint abaplint.json",
"fix_result": "abaplint abaplint.json --fix",
"rename": "abaplint abaplint_rename.json --rename && rm -rf src/* && cp -r output/input/file-formats/* src/ && mv ./src/*/type/* ./src/",
"mirror": "rm -rf input && rm -rf output && npm run clone && npm run rename && npm run fix_result",
"generate_xml": "bash ./add-xml.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abapGit/aff_mirror.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/abapGit/aff_mirror/issues"
},
"homepage": "https://github.com/abapGit/aff_mirror#readme",
"dependencies": {
"@abaplint/cli": "^2.113.104"
}
}