-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
53 lines (53 loc) · 972 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "node-opendkim",
"version": "0.1.0",
"description": "node.js language binding for libopendkim",
"license": "MIT",
"repository": "godsflaw/node-opendkim",
"author": {
"name": "Christopher Mooney",
"email": "[email protected]",
"url": "github.com/godsflaw/node-opendkim"
},
"bin": "cli.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && nyc ava"
},
"keywords": [
"cli-app",
"cli"
],
"dependencies": {
"meow": "^3.7.0",
"nan": "^2.6.1"
},
"devDependencies": {
"ava": "^0.15.1",
"coveralls": "^2.11.9",
"nyc": "^6.4.0",
"xo": "^0.15.0"
},
"gypfile": true,
"ava": {
"concurrency": 20
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"xo": {
"space": 2,
"rules": {
"no-else-return": 0,
"no-multiple-empty-lines": 0,
"no-negated-condition": 0,
"no-warning-comments": 0,
"camelcase": 0
}
}
}