-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.26 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
{
"name": "werist",
"version": "0.3.3",
"description": "a whois client for node.js",
"author": {
"name": "Andreas Diem",
"email": "[email protected]"
},
"keywords": [
"whois",
"whois-client",
"whoisclient"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/w4andy/node-werist/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:w4andy/node-werist.git"
},
"dependencies": {
"iconv": "2.3.4",
"ip-address": "5.9.2",
"punycode": "2.1.1",
"tldjs": "2.3.1",
"socks": "2.3.2",
"detect-character-encoding": "0.8.0"
},
"devDependencies": {
"ajv": "6.10.1",
"changelog42": "0.9.0",
"eslint": "5.16.0",
"eslint-plugin-node": "9.1.0",
"mocha": "6.1.4",
"nyc": "14.1.1"
},
"main": "./lib",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint ./",
"test": "npm run lint && nyc --exclude=node_modules --exclude=test --reporter=lcov --reporter=text --reporter=text-summary --reporter=json-summary _mocha ./test/*.test.js",
"log": "changelog42 --no-author --commit-url=https://github.com/w4andy/node-werist/commit",
"clean": "rm -rf node_modules/ && rm -rf coverage/ && rm -rf .nyc_output/ && rm -f npm-debug.log"
}
}