-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 986 Bytes
/
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
{
"name": "varnalab-whois",
"version": "1.0.0",
"private": true,
"description": "Whois in VarnaLab Service",
"keywords": [],
"license": "MIT",
"homepage": "https://api.varnalab.org",
"author": "Simeon Velichkov <[email protected]> (https://simov.github.io)",
"repository": {
"type": "git",
"url": "https://github.com/varnalab/varnalab-whois.git"
},
"dependencies": {
"minimist": "^1.2.0",
"request-compose": "^1.0.0",
"uuid": "^3.2.1"
},
"devDependencies": {
"coveralls": "^3.0.1",
"istanbul": "1.1.0-alpha.1",
"mocha": "^5.1.1",
"request-logs": "0.0.5"
},
"bin": {
"varnalab-whois": "./bin/cli.js"
},
"main": "",
"files": [
"bin/",
"lib/",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"test": "npm run test:ci",
"test:ci": "mocha --timeout 5000 test/",
"test:cov": "istanbul cover _mocha -- --timeout 5000"
},
"engines": {
"node": ">=8.0.0"
}
}