smartping/package.json

58 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2018-11-18 14:06:17 +00:00
{
2023-07-10 08:17:26 +00:00
"name": "@push.rocks/smartping",
2023-04-19 15:21:17 +00:00
"version": "1.0.8",
2018-11-18 14:06:17 +00:00
"private": false,
2024-04-14 16:08:27 +00:00
"description": "A utility for performing ping operations in Node.js environments.",
2022-10-20 06:24:20 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
2018-11-18 14:06:17 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2022-10-20 06:24:20 +00:00
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "(tsdoc)"
2018-11-18 14:06:17 +00:00
},
2022-10-21 09:55:42 +00:00
"dependencies": {
"@types/ping": "^0.4.1",
2023-04-19 15:21:16 +00:00
"ping": "^0.4.4"
2022-10-21 09:55:42 +00:00
},
2018-11-18 14:06:17 +00:00
"devDependencies": {
2022-10-20 06:24:20 +00:00
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsbundle": "^2.0.5",
"@gitzone/tsdoc": "^1.1.10",
2023-04-19 15:21:16 +00:00
"@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.74",
2022-10-20 06:24:20 +00:00
"@pushrocks/tapbundle": "^5.0.3",
2023-04-19 15:21:16 +00:00
"@types/node": "^18.15.11"
2018-11-18 14:06:17 +00:00
},
2022-10-20 06:24:20 +00:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 16:08:27 +00:00
],
"keywords": [
"ping",
"network",
"connectivity",
"Node.js",
"utility",
"async",
"promise"
2024-05-29 12:15:26 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartping",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartping.git"
}
2023-07-10 08:17:26 +00:00
}