-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
61 lines (61 loc) · 1.36 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
53
54
55
56
57
58
59
60
61
{
"name": "mailersend",
"version": "2.3.0",
"description": "Node.js helper module for MailerSend API",
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"directories": {
"lib": "./lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mailersend/mailersend-nodejs.git"
},
"keywords": [
"mailersend",
"mailersend-ts",
"mailer_send",
"smtp-sender",
"email-sender",
"email-api",
"transactional-emails",
"transactional-sms",
"typescript",
"mailer-send",
"types",
"email"
],
"author": "MailerSend",
"license": "MIT",
"bugs": {
"url": "https://github.com/mailersend/mailersend-nodejs/issues"
},
"homepage": "https://www.mailersend.com/",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "jest --config jestconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"gaxios": "^5.0.1",
"isomorphic-unfetch": "^3.1.0",
"qs": "^6.11.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"dotenv": "^9.0.2",
"jest": "^27.2.4",
"jest-coverage-badges": "^1.1.2",
"nock": "^13.1.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
}
}