-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
50 lines (50 loc) · 1.17 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
{
"name": "chargebee-typescript",
"version": "2.44.0",
"description": "A library in typescript for integrating with Chargebee.",
"keywords": [
"payments",
"billing",
"subscription",
"chargebee",
"chargebee-typescript"
],
"homepage": "http://github.com/chargebee/chargebee-typescript",
"author": "Navaneedhan <navaneedhan@chargebee.com> (https://www.chargebee.com)",
"main": "lib/chargebee.js",
"types": "lib/chargebee.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"tsc": "tsc --pretty"
},
"dependencies": {
"q": ">=1.0.1"
},
"devDependencies": {
"@types/node": "^13.13.52",
"@types/q": "^1.5.2",
"typescript": "^3.9.3"
},
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "http://github.com/chargebee/chargebee-typescript.git"
},
"engines": {
"node": ">=8.0.0"
},
"bugs": {
"url": "http://support.chargebee.com",
"email": "support@chargebee.com"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/chargebee/chargebee-typescript/blob/master/LICENSE"
}
]
}