-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
67 lines (67 loc) · 1.23 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
63
64
65
66
67
{
"name": "cares",
"version": "1.1.8",
"description": "node.js interface to c-ares library",
"repository": {
"type": "git",
"url": "https://github.com/royalpinto/node-cares.git"
},
"keywords": [
"dns",
"c-ares",
"cares",
"ares",
"resolver"
],
"main": "lib/cares.js",
"dependencies": {
"nan": "^2.2.0",
"q": "^1.4.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.14.0",
"eslint-config-google": "^0.7.1",
"jsdoc-to-markdown": "^1.3.6",
"mocha": "^3.2.0",
"native-dns": "^0.7.0"
},
"scripts": {
"test": "mocha test",
"install": "node-gyp rebuild --release",
"lint": "eslint .",
"docs": "jsdoc2md lib/*.js > API.md"
},
"author": "Royal Pinto <royalpinto@gmail.com>",
"license": "MIT",
"gypfile": true,
"eslintConfig": {
"extends": "google",
"rules": {
"comma-dangle": [
2,
"always-multiline"
],
"no-multiple-empty-lines": [
2,
{
"max": 2,
"maxEOF": 1
}
],
"no-var": [
0
],
"prefer-rest-params": [
0
],
"indent": [
2,
4,
{
"SwitchCase": 1
}
]
}
}
}