forked from gerencianet/gn-api-sdk-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·44 lines (44 loc) · 1.08 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
{
"name": "gn-api-sdk-node",
"description": "Module for integration with Gerencianet API",
"version": "0.0.22",
"author": "Francisco Carvalho <[email protected]>",
"license": "MIT",
"repository": "gerencianet/gn-api-sdk-node",
"homepage": "https://github.com/gerencianet/gn-api-sdk-node",
"keywords": [
"gerencianet",
"pagamentos",
"payment",
"sdk",
"integração",
"integration",
"api"
],
"dependencies": {
"q": "~1.5.1",
"request": "^2.83.0",
"request-debug": "~0.2.0",
"oauth": "0.9.15"
},
"devDependencies": {
"mocha": "~4.1.0",
"nock": "~9.1.5",
"proxyquire": "^1.8.0",
"rewire": "~3.0.2",
"should": "~13.2.0",
"should-promised": "~0.3.1",
"simple-mock": "~0.8.0",
"sinon": "~4.1.3",
"istanbul": "~0.4.5",
"codeclimate-test-reporter": "0.5.0"
},
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"start": "node app.js",
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-cov": "istanbul cover node_modules/.bin/_mocha -- -u exports -R spec test/**/*"
}
}