Files
smartping/package.json
T

59 lines
1.2 KiB
JSON
Raw Normal View History

2018-11-18 15:06:17 +01:00
{
2023-07-10 10:17:26 +02:00
"name": "@push.rocks/smartping",
2026-05-01 21:44:49 +00:00
"version": "1.0.9",
2018-11-18 15:06:17 +01:00
"private": false,
2024-04-14 18:08:27 +02:00
"description": "A utility for performing ping operations in Node.js environments.",
"exports": {
".": "./dist_ts/index.js"
},
2022-10-20 08:24:20 +02:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2018-11-18 15:06:17 +01:00
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild",
"buildDocs": "tsdoc"
2018-11-18 15:06:17 +01:00
},
2022-10-21 11:55:42 +02:00
"dependencies": {
"ping": "^1.0.0"
2022-10-21 11:55:42 +02:00
},
2018-11-18 15:06:17 +01:00
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2018-11-18 15:06:17 +01:00
},
2022-10-20 08:24:20 +02:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2022-10-20 08:24:20 +02:00
"npmextra.json",
"readme.md"
2024-04-14 18:08:27 +02:00
],
"keywords": [
"ping",
"network",
"connectivity",
"Node.js",
"utility",
"async",
"promise"
2024-05-29 14:15:26 +02:00
],
"homepage": "https://code.foss.global/push.rocks/smartping",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartping.git"
}
}