forked from abap-openapi/abap-openapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.41 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
{
"name": "abap-openapi-client",
"private": true,
"version": "1.0.0",
"description": "ABAP OpenAPI Client Generator",
"scripts": {
"lint": "abaplint",
"transpile": "abaplint && npx rimraf output && abap_transpile",
"unit_test": "node output/index.mjs",
"test": "npm run transpile && npm run unit_test && npm run testv2",
"petstore": "npm run transpile && node test_v1/index.mjs https://petstore3.swagger.io/api/v3/openapi.json petstore",
"github": "npm run transpile && node test_v1/index.mjs https://raw.githubusercontent.com/github/rest-api-description/main/descriptions/api.github.com/api.gh.neting.cc.json github",
"integration_test": "npx rimraf output_test && abap_transpile ./abap_transpile_test.json && node output_test/index.mjs",
"testv1": "npm run transpile && node test_v1/index.mjs ./test_v1/spec01.json spec01 && node test_v1/index.mjs ./test_v1/spec02.json spec02",
"testv2": "node test_v2/test.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/abap-openapi/abap-openapi-client.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/abap-openapi/abap-openapi-client/issues"
},
"homepage": "https://github.com/abap-openapi/abap-openapi-client#readme",
"dependencies": {
"@abaplint/cli": "^2.102.51",
"@abaplint/runtime": "^2.7.101",
"@abaplint/transpiler-cli": "^2.7.101",
"rimraf": "^5.0.5"
}
}