forked from sebsylvester/parse-server-mailgun
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 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
{
"name": "parse-server-mailgun",
"version": "2.4.3",
"description": "Mailgun adapter for Parse Server apps",
"main": "./lib/MailgunAdapter.js",
"scripts": {
"build:watch": "babel src --out-dir lib --source-maps --watch",
"build": "babel src --out-dir lib --source-maps",
"mailgun": "node ./src/mailgun-tester",
"test": "nyc --reporter=lcov mocha",
"posttest": "nyc report --reporter=json && codecov -f coverage/*.json"
},
"repository": {
"type": "git",
"url": "https://github.com/sebsylvester/parse-server-mailgun.git"
},
"keywords": [
"parse",
"parse-server",
"email-adapter"
],
"author": "Sebastian Sylvester",
"license": "MIT",
"bugs": "https://github.com/sebsylvester/parse-server-mailgun/issues",
"homepage": "https://github.com/sebsylvester/parse-server-mailgun",
"files": [
"src",
"lib",
"test"
],
"dependencies": {
"co": "^4.6.0",
"mailcomposer": "^4.0.0",
"mailgun-js": "^0.8.1",
"mustache": "^2.3.0"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-preset-es2015-node": "^6.1.1",
"chai": "^3.5.0",
"codecov": "^1.0.1",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"sinon": "^1.17.6"
},
"engines": {
"node": ">=4.6"
}
}