-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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": "@poddify/mailer",
"version": "0.0.3",
"description": "Lightweight email library (powered by Mailgun)",
"main": "index.js",
"scripts": {
"build": "babel src --out-dir lib --source-maps",
"coverage": "nyc --check-coverage --reporter=text npm test",
"lint": "eslint .js src/ test/",
"test": "mocha",
"verify": "npm run lint && npm run coverage"
},
"files": [
"/lib",
"/src"
],
"author": "Poddify <jordan@poddify.com>",
"repository": {
"type": "git",
"url": "git@github.com/Poddify/mailer"
},
"license": "MIT",
"dependencies": {
"mailgun-js": "^0.18.0"
},
"devDependencies": {
"@poddify/eslint-config-poddify": "^1.0.0",
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.4",
"babel-plugin-transform-regenerator": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"chance": "^1.0.16",
"eslint": "^4.18.2",
"jsdom": "^11.6.2",
"mocha": "^6.2.2",
"nyc": "^14.1.1",
"proxyquire": "^1.8.0",
"sinon": "^2.3.2"
}
}