-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 976 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 976 Bytes
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
{
"name": "@vothub/hostident-api",
"version": "0.0.1",
"description": "Web service implementing lookup-lib.",
"keywords": [],
"main": "main.js",
"author": "Vot",
"repository": {
"type": "git",
"url": "https://github.com/vothub/hostident-api.git"
},
"scripts": {
"start": "node main.js",
"lint": "eslint .",
"test": "mocha **/*.spec.js"
},
"license": "MIT",
"dependencies": {
"async": "^3.1.0",
"body-parser": "^1.19.0",
"domain-info": "^0.1.2",
"express": "^4.17.1",
"geoip-lite": "^1.3.7",
"hbs": "^4.0.4",
"lodash": "^4.17.21",
"node-nmap": "^4.0.0",
"prettyjson": "^1.2.1",
"request": "^2.88.0",
"traceroute": "^1.0.0",
"whois": "^2.10.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "6.2.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "^2.18.2",
"nyc": "^14.1.1",
"mocha": "^6.2.0",
"mocha-lcov-reporter": "^1.3.0"
}
}