-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.12 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
46
47
{
"name": "swedbank-pay-js",
"version": "1.0.0",
"description": "Swedbank Pay (PayEx) API wrapper",
"homepage": "https://github.com/p-fedyukovich/swedbank-pay-js#readme",
"keywords": [
"payex",
"swedbank-pay",
"payment processing",
"credit cards",
"api"
],
"author": "Pavel Fediukovich <pavel.fedyukovich@gmail.com>",
"contributors": [
"Pavel Fediukovich <pavel.fedyukovich@gmail.com>"
],
"types": "build/index.d.ts",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "release-it",
"check": "gts check",
"clean": "gts clean",
"precompile": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run check"
},
"files": [
"build/**/*"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^12.12.37",
"gts": "^1.1.2",
"prettier": "^2.1.2",
"release-it": "^14.2.0",
"ts-lint": "^4.5.1",
"typescript": "~3.7.3"
},
"dependencies": {
"axios": "^0.21.0",
"axios-retry": "^3.1.9"
}
}