-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
37 lines (37 loc) · 1.09 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
{
"name": "epayco-sdk-node",
"version": "1.3.0",
"description": "Epayco API client for node.js",
"main": "lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --timeout 10000 --require test/common test/*.js",
"coverage": "./node_modules/istanbul/lib/cli.js cover _mocha -- test/*.js --require test/common --timeout 10000"
},
"repository": {
"type": "git",
"url": "git://github.com/epaco/epayco-node.git"
},
"keywords": [
"Epayco",
"API"
],
"author": "Epayco <[email protected]> (https://epayco.co)",
"contributors": [
"Jonathan Aguirre <[email protected]>",
"Jeison Caro <[email protected]>",
"Ricardo Saldarriaga <[email protected]>"
],
"license": "MIT",
"dependencies": {
"crypto-js": "^4.2.0",
"debug": "2.6.9",
"dotenv": "^16.3.1",
"node-fetch": "^2.6.0",
"superagent": "^3.7.0"
},
"devDependencies": {
"better-assert": "1.0.2",
"istanbul": "^0.4.5",
"mocha": "^10.7.0"
}
}