forked from J-Chaniotis/external-ip
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.5 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
{
"name": "ext-ip",
"version": "0.3.9",
"title": "Node.js external IP receiver",
"description": "A node.js library to get your external ip from multiple services.",
"licenses": [{
"type": "ISC",
"url": "https://opensource.org/licenses/ISC"
}],
"homepage": "https://github.com/dkern/external-ip",
"bugs": "https://github.com/dkern/external-ip/issues",
"repository": {
"type": "git",
"url": "https://[email protected]/dkern/external-ip.git"
},
"main": "index.js",
"bin": {
"ext-ip": "lib/cli/ext-ip.js"
},
"author": {
"name": "Daniel 'Eisbehr' Kern",
"email": "[email protected]",
"url": "http://www.eisbehr.de"
},
"contributors": [{
"name": "John Chaniotis"
}, {
"name": "Nikolas Andronopoulos",
"email": "[email protected]"
}
],
"keywords": [
"node.js",
"external",
"ip",
"network",
"public",
"address"
],
"scripts": {
"test": "nyc --reporter=none mocha",
"cover": "nyc --reporter=html mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"commander": "^2.9.0",
"request": "^2.81.0"
},
"devDependencies": {
"chai": "^4.0.2",
"chai-as-promised": "^7.0.0",
"coveralls": "^2.13.1",
"gulp": "^3.9.1",
"gulp-jshint": "^2.0.4",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"mocha": "^3.4.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^11.0.2",
"sinon": "^2.3.4"
},
"engines": {
"node": ">=4"
}
}