-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.54 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
{
"name": "medusa-plugin-postmark",
"version": "4.6.1",
"description": "Postmark notification plugin for MedusaJS",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/Fullstak-nl/medusa-plugin-postmark"
},
"author": "Bram Hammer",
"license": "MIT",
"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-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",
"@medusajs/medusa": "^1.7.5",
"client-sessions": "^0.8.0",
"cross-env": "^5.2.1",
"jest": "^29.7.0",
"medusa-interfaces": "^1.3.3"
},
"scripts": {
"build": "babel src --out-dir . --ignore '**/__tests__','**/__mocks__'",
"prepare": "cross-env NODE_ENV=production yarn run build",
"watch": "babel -w src --out-dir . --ignore **/__tests__",
"test": "jest --passWithNoTests"
},
"peerDependencies": {
"medusa-interfaces": "1.x"
},
"dependencies": {
"@babel/plugin-transform-classes": "^7.9.5",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"get-stream": "^6.0.1",
"medusa-core-utils": "^1.1.37",
"medusa-test-utils": "^1.1.37",
"pdfkit": "^0.13.0",
"postmark": "^4.0.2"
},
"keywords": [
"medusa-plugin",
"medusa-plugin-notification"
]
}