-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.03 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": "maxipago",
"version": "0.6.0",
"description": "A NodeJS lib for MaxiPago Gateway",
"license": "MIT",
"contributors": [
{
"name": "Rafael Verger",
"email": "[email protected]",
"url": "https://github.com/rafaelverger"
},
{
"name": "Anderson de Oliveira",
"email": "[email protected]",
"url": "https://github.com/andersonba"
},
{
"name": "Felipe Plets",
"email": "[email protected]",
"url": "https://github.com/felipeplets"
}
],
"homepage": "https://github.com/rafaelverger/maxipago-nodejs",
"repository": {
"type": "git",
"url": "https://github.com/rafaelverger/maxipago-nodejs.git"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/maxipago.js",
"engines": {
"node": ">= 0.10.x"
},
"scripts": {
"test": "node test/all.js"
},
"dependencies": {
"restify-clients": "^1.5.2",
"xml2js": ">=0.4.19"
},
"devDependencies": {
"mocha": "4.0.1",
"sinon": "4.1.3",
"proxyquire": "1.8.0"
}
}