-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.65 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.65 KB
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
{
"name": "@marcosgn/medusa-payment-mercadopago",
"version": "1.1.0",
"description": "Mercadopago Transparent Checkout Provider for Medusa Commerce accept creditcard and pix payments",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/marcosgomesneto/medusa-payment-mercadopago.git"
},
"files": [
"dist"
],
"author": "Marcos Gomes Neto <marcosgomesneto@gmail.com>",
"license": "MIT",
"scripts": {
"prebuild": "rimraf dist",
"prepare": "cross-env NODE_ENV=production yarn run build",
"test": "jest --passWithNoTests src",
"build": "yarn prebuild && tsc",
"build:local": "yarn dev && yarn prebuild && tsc && mv ./node_modules/@medusajs/medusa ./",
"dev": "[ -d ./medusa ] && mv ./medusa ./node_modules/@medusajs || echo 'Medusa not found'",
"watch": "tsc --watch"
},
"devDependencies": {
"@medusajs/medusa": "^1.20.6",
"@types/express": "^4.17.13",
"cross-env": "^5.2.1",
"jest": "^25.5.4",
"typescript": "^4.9.5"
},
"peerDependencies": {
"@medusajs/medusa": "1.20.2"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.2",
"medusa-core-utils": "^1.2.0",
"mercadopago": "^2.0.9",
"typeorm": "^0.3.16"
},
"keywords": [
"medusa-plugin",
"medusa-plugin-payment",
"medusa-plugin-mercadopago",
"medusa-payment-mercadopago-pix",
"medusa-payment-mercadopago-creditcard"
],
"packageManager": "yarn@1.22.21+sha1.1959a18351b811cdeedbd484a8f86c3cc3bbaf72"
}