detector/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

2021-04-12 19:00:08 +00:00
{
2022-07-16 16:15:23 +00:00
"name": "@uptime.link/detector",
2022-07-16 16:43:27 +00:00
"version": "2.0.1",
2021-04-12 19:00:08 +00:00
"private": false,
"description": "a detector for answering network questions locally. It does not rely on any online services.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-16 16:15:23 +00:00
"type": "module",
2021-04-12 19:00:08 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
2022-07-16 16:15:23 +00:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2021-04-12 19:00:08 +00:00
},
"devDependencies": {
2022-07-16 16:15:23 +00:00
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tsbundle": "^2.0.5",
"@gitzone/tstest": "^1.0.71",
"@pushrocks/tapbundle": "^5.0.3",
"@types/node": "^18.0.5",
2021-04-12 19:00:08 +00:00
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
},
2021-04-13 08:30:33 +00:00
"dependencies": {
2022-07-16 16:15:23 +00:00
"@pushrocks/smartnetwork": "^3.0.0",
"@pushrocks/smarturl": "^2.0.1"
2021-04-13 08:30:33 +00:00
},
2021-04-12 19:00:08 +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-07-16 16:15:24 +00:00
}