-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.54 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
{
"name": "ip-cloudy",
"version": "0.6.0",
"description": "Lookup module for checking if an IP is in a cloud service range ",
"keywords": [
"ip",
"lookup",
"cloud",
"gce",
"whois",
"azure",
"aws",
"bot"
],
"main": "src/ipCloudy.js",
"repository": "https://github.com/mirusresearch/ipCloudy.git",
"author": "Alec Troemel <alec@mirusresearch.com>",
"contributors": [
"Andrew Hughes <andrew@mirusresearch.com>",
"Zsombor Paróczi <zsombor.paroczi@gmail.com> (https://github.com/realhidden)"
],
"license": "MIT",
"scripts": {
"test": "nyc ava --verbose",
"speedtest": "node test/_speedtest.js",
"lint": "eslint src test --fix"
},
"dependencies": {
"axios": "~0.24.0",
"axios-cookiejar-support": "2.0.3",
"debug": "~4.3.3",
"flat-cache": "~3.0.4",
"ipaddr.js": "^2.0.1",
"lodash": "~4.17.21",
"lru-cache": "~6.0.0",
"public-ip": "4.0.4",
"set-interval-async": "^2.0.3",
"tough-cookie": "~4.0.0",
"whois": "~2.13.7",
"xml2js": "~0.4.23"
},
"devDependencies": {
"ava": "^4.0.1",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"nanotimer": "^0.3.15",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"timekeeper": "^2.0.0"
},
"ava": {
"files": [
"test/unit/**/*.spec.js"
]
}
}