-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
35 lines (35 loc) · 1.13 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
34
35
{
"name": "killbill",
"version": "0.24.10",
"description": "Kill Bill client library",
"homepage": "https://github.com/killbill/killbill-client-js",
"author": "Kill Bill core team <[email protected]> (https://killbill.io)",
"repository": {
"type": "git",
"url": "git://github.com/killbill/killbill-client-js.git"
},
"bugs:": "https://github.com/killbill/killbill-client-js/issues",
"license": "Apache-2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm -rf dist",
"codegen": "openapi-generator-cli generate --generator-name typescript-axios --input-spec codegen/kbswagger.yaml --config codegen/config.yaml",
"build": "npm run clean && tsc",
"test": "mocha test/*.ts --require ts-node/register",
"prepublishOnly": "npm run build"
},
"dependencies": {
"axios": "^1.6.8"
},
"devDependencies": {
"@openapitools/openapi-generator-cli": "^2.13.1",
"@types/chai": "^4.2.12",
"@types/mocha": "^10.0.0",
"@types/node": "^18.0.0",
"chai": "^4.2.0",
"mocha": "^10.0.0",
"ts-node": "^10.7.0",
"typescript": "^5.4.4"
}
}