smartnetwork/package.json

64 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2017-12-12 22:35:20 +00:00
{
2023-07-10 08:16:49 +00:00
"name": "@push.rocks/smartnetwork",
2022-10-22 15:39:29 +00:00
"version": "3.0.2",
2018-07-17 07:00:27 +00:00
"private": false,
2024-04-14 16:02:08 +00:00
"description": "A toolkit for network diagnostics including speed tests, port availability checks, and more.",
2020-08-12 16:30:17 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-24 22:11:53 +00:00
"type": "module",
2017-12-12 22:35:20 +00:00
"author": "Lossless GmbH",
2018-07-17 07:00:27 +00:00
"license": "MIT",
2017-12-12 22:35:20 +00:00
"scripts": {
2019-04-17 18:05:07 +00:00
"test": "(tstest test/)",
2022-03-24 22:11:53 +00:00
"build": "(tsbuild --web --allowimplicitany)"
2017-12-12 22:35:20 +00:00
},
"devDependencies": {
2022-03-24 22:11:53 +00:00
"@gitzone/tsbuild": "^2.1.61",
2022-10-21 15:13:06 +00:00
"@gitzone/tsrun": "^1.2.39",
2022-03-24 22:11:53 +00:00
"@gitzone/tstest": "^1.0.69",
"@pushrocks/smartenv": "^5.0.0",
2022-10-21 15:13:06 +00:00
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^18.11.3"
2017-12-12 22:35:20 +00:00
},
"dependencies": {
2022-10-21 15:13:06 +00:00
"@pushrocks/smartping": "^1.0.7",
2022-03-24 22:11:53 +00:00
"@pushrocks/smartpromise": "^3.1.7",
"@pushrocks/smartstring": "^4.0.2",
2020-08-12 16:29:03 +00:00
"@types/default-gateway": "^3.0.1",
"isopen": "^1.3.0",
2022-10-21 15:13:06 +00:00
"public-ip": "^6.0.1",
2022-03-24 22:11:53 +00:00
"systeminformation": "^5.11.9"
2019-09-06 16:26:32 +00:00
},
"files": [
2019-11-19 23:00:37 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-08-12 16:30:17 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-19 23:00:37 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-09-06 16:26:32 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-08-12 16:30:17 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 16:02:08 +00:00
],
"keywords": [
"network diagnostics",
"ping",
"port check",
"speed test",
"network interface",
"public IP retrieval",
"Cloudflare speed test",
"network performance",
"network utility",
"TypeScript"
2024-05-29 12:14:57 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartnetwork",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartnetwork.git"
}
2023-07-10 08:16:49 +00:00
}