-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.5 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.5 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
{
"name": "gocardless-nodejs",
"version": "7.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 <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"
],
"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"
},
"main": "index.js",
"types": "types/Types.d.ts",
"engines": {
"node": ">=18.0"
}
}