This repository has been archived by the owner on Jul 9, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.94 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "lago-nodejs-client",
"version": "v0.26.0-beta",
"description": "Lago Node.js API Client",
"main": "./lib/client.js",
"type": "module",
"exports": {
".": "./lib/client.js",
"./add_on": "./lib/models/add_on.js",
"./applied_add_on": "./lib/models/applied_add_on.js",
"./applied_coupon": "./lib/models/applied_coupon.js",
"./batch_event": "./lib/models/batch_event.js",
"./billable_metric": "./lib/models/billable_metric.js",
"./charge": "./lib/models/charge.js",
"./coupon": "./lib/models/coupon.js",
"./coupon_limitation_configuration": "./lib/models/coupon_limitation_configuration.js",
"./credit_note": "./lib/models/credit_note.js",
"./customer": "./lib/models/customer.js",
"./customer_billing_configuration": "./lib/models/customer_billing_configuration.js",
"./customer_metadata": "./lib/models/customer_metadata.js",
"./event": "./lib/models/event.js",
"./invoice": "./lib/models/invoice.js",
"./invoice_metadata": "./lib/models/invoice_metadata.js",
"./organization": "./lib/models/organization.js",
"./organization_billing_configuration": "./lib/models/organization_billing_configuration.js",
"./plan": "./lib/models/plan.js",
"./subscription": "./lib/models/subscription.js",
"./wallet": "./lib/models/wallet.js",
"./wallet_transaction": "./lib/models/wallet_transaction.js"
},
"scripts": {
"test": "node_modules/.bin/mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/getlago/lago-nodejs-client.git"
},
"keywords": [
"Lago",
"Node",
"API",
"Client"
],
"author": "Lovro Colic",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/getlago/lago-nodejs-client/issues"
},
"homepage": "https://github.com/getlago/lago-nodejs-client#readme",
"dependencies": {
"node-fetch": "^3.2.4"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nock": "^13.2.4"
}
}