-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.24 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
{
"name": "@rantalainen/maventa-api-client",
"version": "2.1.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"dev": "tsc --watch",
"test": "nodemon test.js",
"build": "tsc",
"openapi-autoxchange": "npx swagger-typescript-api -p https://ax.maventa.com/swagger_doc -o ./src -n api.ts -r --default-response any --module-name-index 1 --axios",
"openapi-billing": "npx swagger-typescript-api -p https://bling.maventa.com/api/billing/v2/swagger_yml -o ./src -n billing-api.ts -r --default-response any --module-name-index 1 --axios"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rantalainen/maventa-api-client.git"
},
"author": "",
"license": "MIT",
"files": [
"dist/**/*"
],
"bugs": {
"url": "https://github.com/rantalainen/maventa-api-client/issues"
},
"homepage": "https://github.com/rantalainen/maventa-api-client#readme",
"dependencies": {
"agentkeepalive": "^4.2.1",
"axios": "^1.1.3",
"cacheable-lookup": "^6.1.0",
"form-data": "^4.0.0",
"got": "^11.8.6",
"jszip": "^3.10.0",
"soap": "^1.0.0"
},
"devDependencies": {
"swagger-typescript-api": "^12.0.4",
"typescript": "^4.4.4"
},
"publishConfig": {
"access": "public"
}
}