mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
* add mailgun template * add api key option * undo committing idea folder, implement mailgun sdk * add docs * merge develop * implement review comments, removed vscode files * undo changes to package-lock.json * implement review comments * remove unused dev dependency * remove unused dev dependency * revert deletion of vscode config files
24 lines
562 B
JSON
24 lines
562 B
JSON
{
|
|
"name": "@tooljet-plugins/mailgun",
|
|
"version": "1.0.0",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "echo \"Error: run tests from root\" && exit 1",
|
|
"build": "tsc -b",
|
|
"clean": "rimraf ./dist && rimraf tsconfig.tsbuildinfo"
|
|
},
|
|
"homepage": "https://github.com/tooljet/tooljet#readme",
|
|
"dependencies": {
|
|
"@tooljet-plugins/common": "file:../common",
|
|
"mailgun.js": "^5.0.1",
|
|
"react": "^17.0.2"
|
|
}
|
|
}
|