-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.31 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
{
"name": "vicdotdev-mailer-hub",
"version": "0.1.3",
"description": "A naive mailing lib with multiple email service providers integrated.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && npm run rm-tests",
"lint": "tslint 'src/**/*.ts'",
"rm-tests": "rm -rf 'dist/tests'",
"prepublish": "npm run build && npm run rm-tests",
"test": "mocha --require ts-node/register 'src/**/*.spec.ts'",
"test build": "./node_modules/mocha/bin/mocha 'dist/**/*.spec.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/victor-develop/mailer-hub.git"
},
"author": "Victor Zhou <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/victor-develop/mailer-hub/issues"
},
"homepage": "https://github.com/victor-develop/mailer-hub#readme",
"engines": {
"node": ">=8.1.x"
},
"devDependencies": {
"@types/chai": "^4.1.2",
"@types/mocha": "^2.2.48",
"@types/node": "^9.4.4",
"chai": "^4.1.2",
"mocha": "^5.0.0",
"ts-node": "^4.1.0",
"tslint": "^5.9.1",
"tslint-config-airbnb-base": "^0.1.0",
"typescript": "^2.7.1"
},
"dependencies": {
"@sendgrid/mail": "^6.2.1",
"email-validator": "^1.1.1",
"mailgun-js": "^0.14.2",
"make-error-cause": "^1.2.2"
}
}