-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.05 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.05 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "gocardless-nodejs",
"version": "8.0.0",
"description": "Node.js client for the GoCardless API - a powerful, simple solution for the collection of recurring bank-to-bank payments",
"author": "GoCardless Ltd <client-libraries@gocardless.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/gocardless/gocardless-nodejs.git"
},
"bugs": {
"url": "https://github.com/gocardless/gocardless-nodejs/issues"
},
"homepage": "https://github.com/gocardless/gocardless-nodejs#readme",
"license": "MIT",
"keywords": [
"gocardless",
"payments",
"rest",
"api",
"direct debit"
],
"type": "module",
"main": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/types/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/types/index.d.ts",
"default": "./dist/cjs/index.js"
}
},
"./client": {
"import": {
"types": "./dist/types/client.d.ts",
"default": "./dist/esm/client.js"
},
"require": {
"types": "./dist/types/client.d.ts",
"default": "./dist/cjs/client.js"
}
},
"./constants": {
"import": {
"types": "./dist/types/constants.d.ts",
"default": "./dist/esm/constants.js"
},
"require": {
"types": "./dist/types/constants.d.ts",
"default": "./dist/cjs/constants.js"
}
},
"./webhooks": {
"import": {
"types": "./dist/types/webhooks.d.ts",
"default": "./dist/esm/webhooks.js"
},
"require": {
"types": "./dist/types/webhooks.d.ts",
"default": "./dist/cjs/webhooks.js"
}
},
"./errors": {
"import": {
"types": "./dist/types/errors.d.ts",
"default": "./dist/esm/errors.js"
},
"require": {
"types": "./dist/types/errors.d.ts",
"default": "./dist/cjs/errors.js"
}
},
"./types": {
"types": "./dist/types/types/Types.d.ts"
},
"./types/Types": {
"types": "./dist/types/types/Types.d.ts"
},
"./package.json": "./package.json"
},
"scripts": {
"test": "jest",
"lint": "eslint src/**/*.ts",
"format": "prettier src --check --write && eslint src/**/*.ts --fix"
},
"dependencies": {
"got": "^11.8.6",
"lodash": "^4.17.21",
"uuid": "^11.1.0",
"buffer-equal-constant-time": "1.0.1",
"qs": "^6.14.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^18.15.10",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^30.1.3",
"nock": "^13.3.0",
"prettier": "^2.8.7",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
"ts-jest": "29.4.1",
"typescript": "^5.0.2"
},
"files": [
"dist/",
"LICENSE.txt",
"README.md"
],
"engines": {
"node": ">=18.0"
}
}