-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.71 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "express-email-server",
"version": "1.0.0",
"author": "Steven Lee",
"email": "[email protected]",
"private": true,
"license": "MIT",
"main": "bin/start.js",
"scripts": {
"start": "node ./bin/start",
"monitor": "nodemon ./bin/start",
"test": "mocha",
"coverage": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"eslint": "./node_modules/.bin/eslint */*.js & ./node_modules/.bin/eslint app.js"
},
"dependencies": {
"chai": "^4.1.2",
"child_process": "^1.0.2",
"chrome": "^0.1.0",
"cookie-parser": "~1.4.3",
"cryptiles": "^4.1.3",
"debug": "~2.6.9",
"ejs": "^2.6.1",
"express": "~4.17.3",
"extend": "^3.0.2",
"http-errors": "~1.6.2",
"istanbul": "^0.4.5",
"jade": "~1.11.0",
"lodash": "^4.17.19",
"mocha": "^5.2.0",
"morgan": "^1.9.1",
"nodemailer": "^4.6.4",
"should": "^13.2.1"
},
"devDependencies": {
"coveralls": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-google": "^0.9.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"jscoverage": "^0.6.0",
"mocha-lcov-reporter": "^1.3.0",
"nodeunit": "^0.11.3",
"supertest": "^3.1.0"
},
"eslintConfig": {
"env": {
"browser": true,
"node": true,
"mocha": true
}
},
"peerDependencies": {
"eslint": ">= 3"
},
"keywords": [
"nodemailer",
"email server",
"express",
"mocha",
"shouldjs",
"eslint",
"travisCI"
]
}