forked from mozilla/restmail.net
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1 KB
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
{
"name": "restmail.net",
"description": "A teensy tinsy temporary email service with an API and nothing else",
"version": "0.1.0",
"private": true,
"dependencies": {
"bluebird": "3.7.2",
"convict": "6.2.4",
"express": "4.21.0",
"mailparser": "0.6.2",
"morgan": "1.10.0",
"redis": "3.1.1",
"smtp-protocol": "2.4.7"
},
"optionalDependencies": {
"hiredis": "0.5.0"
},
"devDependencies": {
"commander": "12.1.0",
"eslint": "9.11.1",
"eslint-plugin-fxa": "git://github.com/mozilla/eslint-plugin-fxa.git#41504c9dd30e8b52900c15b524946aa0428aef95",
"eslint-plugin-sorting": "git://github.com/shane-tomlinson/eslint-plugin-sorting.git#bcacb99d",
"mocha": "10.7.3",
"should": "13.2.3"
},
"engines": {
"node": ">= 8"
},
"scripts": {
"lint": "eslint bin/*.js lib/*.js tests/*.js",
"start": "node bin/webserver.js",
"test": "npm run lint && npm run tests",
"tests": "NODE_ENV=test mocha --exit --globals msg -R spec tests/*.js"
}
}