forked from msimerson/postfix-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.43 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
{
"name": "postfix-parser",
"description": "Postfix Log Parser",
"keywords": [
"postfix",
"log",
"parse",
"maillog",
"mail.log"
],
"version": "1.0.2",
"private": false,
"homepage": "https://github.com/DoubleCheck/postfix-parser",
"author": {
"name": "Matt Simerson"
},
"repository": {
"type": "git",
"url": "git://github.com/DoubleCheck/postfix-parser.git"
},
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"config": {
"blanket": {
"pattern": [
"index.js",
"lib"
],
"data-cover-never": [
"node_modules",
"test"
]
},
"travis-cov": {
"threshold": 100
}
},
"dependencies": {},
"devDependencies": {
"blanket": "^1.1.7",
"coveralls": "^2.11.2",
"grunt": ">=0.4.5",
"grunt-eslint": "^17.0.0",
"grunt-mocha-test": "^0.12.7",
"grunt-version-check": ">=0.2.1",
"mocha": "^2.2.5",
"mocha-lcov-reporter": "0.0.2",
"travis-cov": "^0.2.5"
},
"bugs": {
"url": "https://github.com/DoubleCheck/postfix-parser/issues"
},
"license": "BSD-2-Clause",
"scripts": {
"lint": "grunt lint",
"test": "NODE_ENV=test mocha",
"coverage": "COVERAGE=1 ./node_modules/.bin/mocha --require blanket --reporter travis-cov",
"coveralls": "COVERAGE=1 ./node_modules/.bin/mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js"
}
}