-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.63 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.63 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "node-barion",
"version": "4.0.0",
"description": "Node API library for Barion Smart Gateway electronic payment system.",
"author": "Kiss Aron <aron123dev@gmail.com>",
"homepage": "https://github.com/aron123/node-barion",
"repository": {
"type": "git",
"url": "github:aron123/node-barion"
},
"bugs": {
"url": "https://github.com/aron123/node-barion/issues",
"email": "aron123dev+barion@gmail.com"
},
"license": "MIT",
"keywords": [
"node",
"barion",
"api",
"e-payment",
"payment",
"smart",
"gateway",
"online",
"money",
"transfer",
"3d",
"secure",
"3ds"
],
"engines": {
"node": ">=6"
},
"directories": {
"lib": "./lib",
"test": "./test"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "mocha test/*.test.js",
"integration-test": "mocha test/*.test.js test/integration/*.test.js",
"coverage": "nyc --all --reporter=text --reporter=lcov npm test"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-spies": "^1.0.0",
"coveralls": "^3.0.2",
"eslint": "^9.38.0",
"fetch-mock": "^7.3.0",
"husky": "^2.7.0",
"lint-staged": "^9.2.3",
"mocha": "^10.1.0",
"nyc": "^14.1.1",
"proxyquire": "^2.1.0"
},
"dependencies": {
"joi": "17.7.0",
"node-fetch": "2.6.7"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"nyc": {
"exclude": [
"coverage/**",
"test/**",
"lib/constants.js",
"lib/domain/**",
".eslintrc.js"
]
}
}