-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.2 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
48
49
{
"name": "gopay-js",
"version": "1.5.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"gopay",
"gopay-api",
"payment-gateway",
"payments"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/fronebdev/gopay-js.git"
},
"author": "Froneb s.r.o. <hello@froneb.com>",
"license": "MIT",
"description": "The only functional library for GoPay payment gateway.",
"devDependencies": {
"@types/node": "^14.14.33",
"@types/tap": "^14.10.3",
"axios": "^0.24.0",
"prettier": "^2.2.1",
"tap": "^14.11.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"tsc-alias": "^1.8.2",
"typescript": "^4.2.3"
},
"dependencies": {
"chalk": "^4.1.0",
"global": "^4.4.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3",
"winston": "^3.3.3"
},
"scripts": {
"compile": "tsc && tsc-alias",
"start:dev": "tsnd .",
"test": "tap tests/",
"format": "prettier --write .",
"prepublish": "yarn format && yarn compile && yarn test"
},
"bugs": {
"url": "https://github.com/fronebdev/gopay-js/issues"
},
"homepage": "https://github.com/fronebdev/gopay-js#readme"
}