-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.23 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.23 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
43
44
{
"name": "@codingsans/billingo-client",
"version": "2.1.0",
"description": "Typescript Billingo Client",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib && tsc",
"lint": "eslint src --ext .ts",
"lint-fix": "eslint src --ext .ts --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"generate": "rm -rf src/client && openapi --input ./definitions/3.0.14.json --output ./src/client --client axios",
"fix-enums": "node ./transform/fix-enums.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingSans/billingo-client.git"
},
"keywords": [
"billingo",
"client",
"typescript"
],
"author": "Laszlo {Lacka} Csele - lacka@codingsans.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodingSans/billingo-client/issues"
},
"homepage": "https://github.com/CodingSans/billingo-client#readme",
"dependencies": {},
"devDependencies": {
"@codingsans/eslint-config": "5.2.1",
"@types/node": "^18.0.0",
"axios": "^0.27.2",
"eslint": "7.22.0",
"form-data": "^4.0.0",
"openapi-typescript-codegen": "0.23.0",
"prettier": "2.2.1",
"typescript": "4.2.3"
}
}