-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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": "@agilo/medusa-payment-reepay",
"version": "1.0.1",
"description": "Reepay payment provider for Medusa",
"author": "Agilo",
"repository": {
"type": "git",
"url": "https://github.com/Agilo/medusa-payment-reepay"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Agilo/medusa-payment-reepay/issues"
},
"homepage": "https://github.com/Agilo/medusa-payment-reepay#readme",
"scripts": {
"build": "babel src -d .",
"prepare": "cross-env NODE_ENV=production npm run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "jest --passWithNoTests"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-proposal-optional-chaining": "^7.18.9",
"@babel/plugin-transform-classes": "^7.9.5",
"@babel/plugin-transform-instanceof": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.5",
"@babel/register": "^7.7.4",
"@babel/runtime": "^7.9.6",
"client-sessions": "^0.8.0",
"cross-env": "^5.2.1",
"jest": "^25.5.2",
"medusa-test-utils": "^1.1.37"
},
"peerDependencies": {
"medusa-interfaces": "1.x"
},
"dependencies": {
"axios": "^1.1.3",
"express": "^4.17.1",
"medusa-core-utils": "^1.1.32"
},
"keywords": [
"medusa",
"medusa-plugin",
"medusa-plugin-payment",
"medusa-reepay"
]
}