-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 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
46
47
{
"name": "nodemailer-stub",
"version": "1.2.2",
"description": "Stub transport for Nodemailer. Testing your mails in Node.js is now easy.",
"main": "lib/main.js",
"repository": "[email protected]:LimeDeck/nodemailer-stub.git",
"author": {
"name": "LimeDeck",
"email": "[email protected]",
"url": "https://limedeck.io"
},
"keywords": [
"nodemailer",
"stub",
"transport",
"testing",
"email",
"node"
],
"license": "ISC",
"scripts": {
"pretest": "npm run lint",
"test": "nyc node_modules/.bin/ava",
"report": "nyc report --reporter=html; open .test/coverage/index.html",
"lint": "eslint --ext .js lib test",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"devDependencies": {
"ava": "^0.18.1",
"chai": "^3.5.0",
"coveralls": "^2.11.16",
"eslint": "^4.18.2",
"eslint-config-standard": "^6.2.1",
"eslint-friendly-formatter": "^2.0.7",
"eslint-plugin-ava": "^4.0.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"nodemailer": "^3.0.2",
"nyc": "^10.1.2"
},
"ava": {
"files": "test/*.spec.js"
},
"nyc": {
"report-dir": ".test/coverage"
}
}