-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.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
{
"name": "twikey-api-client",
"version": "0.0.2",
"description": "Twikey API wrapper",
"homepage": "https://github.com/twikey/twikey-api-node",
"author": "Twikey <support@twikey.com> (https://twikey.com/)",
"repository": {
"type": "git",
"url": "git://github.com/twikey/twikey-api-node.git"
},
"bugs": "https://github.com/twikey/twikey-api-node/issues",
"engines": {
"node": ">=16.0.0"
},
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"files": [
"dist/**/*",
"README.md"
],
"keywords": [
"direct debit",
"credit cards",
"subscriptions",
"sepa direct debit",
"api"
],
"license": "MIT",
"scripts": {
"test": "tsx --test",
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc -p ./tsconfig.json",
"prepack": "npm run build",
"dist": "npm publish"
},
"dependencies": {
"axios": "^1.13.5"
},
"devDependencies": {
"@types/node": "^22.14.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.3",
"@faker-js/faker": "^9.6.0",
"typescript": "^5.8.3"
}
}