-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
59 lines (59 loc) · 1.37 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
{
"name": "which-cloud",
"version": "1.3.0",
"description": "given an ip address, return which cloud provider it belongs to (AWS, GCE, etc)",
"main": "index.js",
"bin": "bin/which-cloud.js",
"global": true,
"scripts": {
"pretest": "standard",
"test": "nyc mocha --timeout=2500 test/*.js",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/bcoe/which-cloud.git"
},
"keywords": [
"cloud",
"lookup",
"ip"
],
"author": "Ben Coe <ben@npmjs.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/bcoe/which-cloud/issues"
},
"homepage": "https://github.com/bcoe/which-cloud#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.9",
"mocha": "^2.5.3",
"nock": "^8.0.0",
"nyc": "^7.0.0",
"standard": "^7.1.1",
"standard-version": "^2.3.1"
},
"dependencies": {
"async": "^2.0.0",
"gce-ips": "^1.0.2",
"ip-range-check": "0.0.1",
"lodash.assign": "^4.0.9",
"public-ip": "^1.2.0",
"request": "^2.72.0",
"whois": "^2.1.6",
"xml2js": "^0.4.16",
"yargs": "^4.7.1"
},
"files": [
"lib/aws.js",
"lib/azure.js",
"lib/gce.js",
"lib/whois.js",
"LICENSE.txt",
"data/PublicIPs.xml",
"index.js",
"bin/which-cloud.js"
]
}