smartrouter/package.json

42 lines
944 B
JSON
Raw Normal View History

2020-06-01 20:51:36 +00:00
{
2023-07-10 08:17:49 +00:00
"name": "@push.rocks/smartrouter",
2023-04-11 10:04:18 +00:00
"version": "1.0.16",
2020-06-01 20:51:36 +00:00
"private": false,
"description": "a router for routing on websites",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild --web && tsbundle npm --web)",
2022-12-31 10:21:29 +00:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2020-06-01 20:51:36 +00:00
},
"devDependencies": {
2022-01-22 12:29:23 +00:00
"@gitzone/tsbuild": "^2.1.29",
2022-12-31 10:21:29 +00:00
"@gitzone/tsbundle": "^2.0.7",
2022-01-22 12:29:23 +00:00
"@gitzone/tstest": "^1.0.60",
2022-12-31 10:21:29 +00:00
"@pushrocks/tapbundle": "^5.0.4",
2023-03-18 18:52:32 +00:00
"@types/node": "^18.15.3"
2020-06-01 20:51:36 +00:00
},
"dependencies": {
2021-09-08 19:46:21 +00:00
"path-to-regexp": "^6.2.0"
2020-06-01 20:51:36 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-07-15 18:51:17 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-12-31 10:21:29 +00:00
],
"type": "module"
2023-07-10 08:17:49 +00:00
}