smartwhois/package.json

48 lines
1.1 KiB
JSON
Raw Normal View History

2023-04-03 14:48:14 +00:00
{
"name": "@pushrocks/smartwhois",
2023-04-19 19:51:15 +00:00
"version": "1.0.14",
2023-04-03 14:48:14 +00:00
"private": false,
"description": "a package for dealing with whois requests",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.65",
"@gitzone/tsbundle": "^2.0.7",
"@gitzone/tsdoc": "^1.1.12",
"@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.15.11"
},
"dependencies": {
2023-04-19 12:52:37 +00:00
"@pushrocks/smartrequest": "^2.0.15",
2023-04-18 18:40:39 +00:00
"@pushrocks/smarturl": "^3.0.6",
2023-04-19 19:36:44 +00:00
"@tsclass/tsclass": "^4.0.38",
2023-04-10 12:34:28 +00:00
"tldts": "^6.0.3",
2023-04-03 14:48:14 +00:00
"whoiser": "^1.16.0"
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2023-04-03 14:48:15 +00:00
}