This repository has been archived by the owner on Jan 20, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
54 lines (54 loc) · 1.46 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
{
"name": "parse-server-mailgun",
"version": "2.4.15",
"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",
"lint:src": "eslint 'src/**/*.js'",
"lint:test": "eslint 'test/**/*.js'",
"lint": "npm run lint:src && npm run lint:test",
"mailgun": "node ./src/mailgun-tester",
"test": "nyc --reporter=lcov mocha",
"release": "npm run lint && npm run build && npm test",
"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.2",
"mailgun-js": "^0.22.0",
"mustache": "^3.0.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015-node": "^6.1.1",
"chai": "^4.2.0",
"codecov": "^3.1.0",
"eslint": "^5.8.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.1.0"
},
"engines": {
"node": ">=4.6"
}
}