-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
39 lines (39 loc) · 828 Bytes
/
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
{
"name": "postfix-parser",
"description": "Postfix Log Parser",
"keywords": [
"postfix",
"log",
"parse",
"maillog",
"mail.log"
],
"version": "1.1.2",
"private": false,
"homepage": "https://github.com/msimerson/postfix-parser",
"author": {
"name": "Matt Simerson"
},
"repository": {
"type": "git",
"url": "git://github.com/msimerson/postfix-parser.git"
},
"main": "index.js",
"engines": {
"node": ">=8"
},
"dependencies": {},
"devDependencies": {
"eslint": "*",
"mocha": "*"
},
"bugs": {
"url": "https://github.com/msimerson/postfix-parser/issues"
},
"license": "BSD-2-Clause",
"scripts": {
"lint": "npx eslint index.js lib/*.js test/*.js",
"lintfix": "npx eslint --fix index.js lib/*.js test/*.js",
"test": "npx mocha"
}
}