smartping/package.json

45 lines
979 B
JSON
Raw Normal View History

2018-11-18 14:06:17 +00:00
{
"name": "@pushrocks/smartping",
2022-10-21 12:24:36 +00:00
"version": "1.0.7",
2018-11-18 14:06:17 +00:00
"private": false,
2022-10-20 06:24:20 +00:00
"description": "a ping utility",
"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",
"ping": "^0.4.2"
},
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",
2022-10-20 07:35:02 +00:00
"@gitzone/tsrun": "^1.2.38",
2022-10-20 06:24:20 +00:00
"@gitzone/tstest": "^1.0.44",
"@pushrocks/tapbundle": "^5.0.3",
2022-10-20 07:35:02 +00:00
"@types/node": "^18.11.2"
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"
]
2022-10-20 06:24:20 +00:00
}