forked from mercadopago/sdk-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.35 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
50
51
52
{
"name": "mercadopago",
"version": "1.5.14",
"description": "Mercadopago SDK for Node.js",
"main": "index.js",
"scripts": {
"doc": "jsdoc -c jsdoc.json",
"lint": "NODE_ENV=test eslint lib/*.js",
"coverage": "NODE_ENV=test nyc ./node_modules/mocha/bin/_mocha ./test/*.*",
"coveralls": "npm run coverage -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"test": "NODE_ENV=test mocha ./test/*.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mercadopago/sdk-nodejs.git"
},
"keywords": [
"api",
"mercadopago",
"checkout",
"payment",
"ipn",
"sdk",
"integration"
],
"author": "Ariel Rey <[email protected]>",
"bugs": {
"url": "https://github.com/mercadopago/sdk-nodejs/issues"
},
"homepage": "https://github.com/mercadopago/sdk-nodejs#readme",
"devDependencies": {
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"coveralls": "^3.1.0",
"eslint": ">=4.18.2",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"jsdoc": "^3.6.7",
"mocha": "^9.1.3",
"mocha-lcov-reporter": "1.2.0",
"nyc": "^15.1.0",
"sinon": "1.17.7"
},
"dependencies": {
"ajv": "^6.12.3",
"bluebird": "3.4.7",
"moment": "^2.29.4",
"request": "^2.88.0",
"request-etag": "2.0.3",
"uuid": "3.0.1"
}
}