-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
53
54
55
56
57
{
"name": "mercadopago",
"version": "2.2.0",
"description": "Mercadopago SDK for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc --build tsconfig.production.json && tsc-alias -p tsconfig.production.json",
"test": "jest",
"test:e2e": "jest --config e2e/jest.config.ts",
"lint": "eslint 'src/**/*.{ts,tsx}' 'src/examples/**/*.{ts,tsx}' --cache",
"lint:fix": "eslint --fix --ext .ts src src/examples",
"exec": "node_modules/.bin/ts-node -r tsconfig-paths/register",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mercadopago/sdk-nodejs.git"
},
"keywords": [
"api",
"mercadopago",
"checkout",
"payment",
"ipn",
"sdk",
"integration"
],
"author": "Mercado Pago (https://www.mercadopago.com/developers/en)",
"bugs": {
"url": "https://github.com/mercadopago/sdk-nodejs/issues"
},
"homepage": "https://github.com/mercadopago/sdk-nodejs#readme",
"devDependencies": {
"@types/jest": "^29.5.3",
"@types/node": "^20.4.8",
"@types/node-fetch": "^2.6.4",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0",
"husky": "^8.0.0",
"jest": "^29.6.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.7",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.1.6"
},
"files": [
"dist"
],
"dependencies": {
"node-fetch": "^2.6.12",
"uuid": "^9.0.0"
}
}