forked from LayeredStudio/whoiser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
{
"name": "whoiser",
"version": "1.18.0",
"description": "Whois info for TLDs, domains and IPs",
"types": "./index.d.ts",
"typings": "./index.d.ts",
"keywords": [
"whois",
"domain",
"tld",
"ip"
],
"author": "Andrei Igna <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/LayeredStudio/whoiser.git"
},
"bugs": {
"url": "https://github.com/LayeredStudio/whoiser/issues"
},
"homepage": "https://github.com/LayeredStudio/whoiser#readme",
"main": "index.js",
"scripts": {
"prettier": "prettier \"src/*.js\"",
"prettier:write": "npm run prettier -- --write",
"test": "npm run test-new-with-node-runner && npm run test-old-with-mocha",
"test-old-with-mocha": "mocha -t 7000 -s 3000",
"test-new-with-node-runner": "node --test test/whois-fr.mjs"
},
"devDependencies": {
"mocha": "^10.1.0",
"prettier": "^2.0.4"
},
"dependencies": {
"punycode": "^2.1.1"
},
"engines" : {
"node" : ">=15.0.0"
}
}