-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "gocardless-nodejs",
"version": "4.1.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 <[email protected]>",
"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"
],
"scripts": {
"test": "jest"
},
"dependencies": {
"got": "^11.8.5",
"lodash": "^4.17.15",
"uuid": "^7.0.2",
"qs": "^6.9.1"
},
"devDependencies": {
"@types/node": "^13.9.0",
"@types/jest": "^25.1.4",
"@types/nock": "^11.1.0",
"jest": "^25.1.0",
"ts-jest": "25.2.1",
"nock": "^13.0.11",
"typescript": "^4.2.4"
},
"main": "index.js",
"types": "types/Types.d.ts",
"engines": {
"node": ">=18.0"
}
}