forked from ingameltd/node-przelewy24
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.09 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.09 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
{
"name": "@mrboombastic/node-przelewy24",
"version": "2.5.3",
"description": "A simple library for connecting Przelewy24 service",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "yarn run build",
"prepublishOnly": "yarn test && yarn build:check",
"build": "tsc",
"build:check": "tsc --noEmit",
"watch": "tsc --watch",
"test": "echo 'no tests yet'"
},
"repository": {
"type": "git",
"url": "https://github.com/MrBoombastic/node-przelewy24.git"
},
"keywords": [
"przelewy24",
"nodejs",
"p24",
"P24",
"przelewy",
"payments",
"api"
],
"publishConfig": {
"access": "public"
},
"author": "Ingame",
"contributors": [
{
"name": "MrBoombastic"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/MrBoombastic/node-przelewy24/issues"
},
"homepage": "https://github.com/MrBoombastic/node-przelewy24#readme",
"devDependencies": {
"@types/node": "^26.1.1",
"typescript": "^7.0.2"
},
"dependencies": {
"axios": "^1.12.2"
}
}