-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 906 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 906 Bytes
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
{
"name": "@formidablejs/mailer",
"version": "0.4.4",
"description": "Formidablejs mailer",
"main": "lib/index.js",
"types": "types/index.d.ts",
"publisher": "formidable/Package.js",
"scripts": {
"build": "npm run imba:build && npm run imba:build:temp && npm run ts:build",
"imba:build": "imbac src --output=lib --platform=node --format=cjs --clean",
"imba:build:temp": "imbac src --output=.temp --platform=node --clean",
"imba:watch": "imbac -w src --output=lib --platform=node --clean",
"ts:build": "tsc",
"ts:watch": "tsc -w",
"test": "jest",
"test:watch": "jest --watchAll --detectOpenHandles"
},
"author": "Donald Pakkies <donaldpakkies@gmail.com>",
"license": "MIT",
"dependencies": {
"nodemailer": "^7.0.9"
},
"devDependencies": {
"@types/jest": "^28.1.6",
"@types/node": "^18.0.6",
"imba": "^2.0.0-alpha.212",
"jest": "^28.1.3",
"typescript": "^4.7.4"
}
}