-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 805 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 805 Bytes
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
{
"name": "milterjs",
"description": "javascript milter api client",
"version": "0.0.3",
"author": "Alexandre Tiertant <a.tiertant@atlantis-software.net>",
"license": "MIT",
"main": "./index.js",
"repository": "https://github.com/Atlantis-Software/milterjs",
"homepage": "https://github.com/Atlantis-Software/milterjs",
"keywords": [
"milter",
"api",
"sendmail",
"postfix"
],
"dependencies": {},
"devDependencies": {
"coveralls": "^3.0.0",
"eslint": "~3.11.1",
"istanbul": "0.4.5",
"mailx": "0.0.11",
"mocha": "~5.0.0",
"nyc": "~11.4.1"
},
"scripts": {
"test": "nyc mocha --timeout=5000 --exit",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint ./"
},
"engines": {
"node": ">= 6.0.0"
}
}