smartrouter/package.json

43 lines
964 B
JSON
Raw Normal View History

2020-06-01 20:51:36 +00:00
{
"name": "@pushrocks/smartrouter",
2022-01-22 12:29:24 +00:00
"version": "1.0.12",
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)",
"format": "(gitzone format)"
},
"devDependencies": {
2022-01-22 12:29:23 +00:00
"@gitzone/tsbuild": "^2.1.29",
"@gitzone/tsbundle": "^1.0.88",
"@gitzone/tstest": "^1.0.60",
"@pushrocks/tapbundle": "^4.0.0",
"@types/node": "^17.0.10",
2021-09-08 19:46:21 +00:00
"tslint": "^6.1.3",
2020-06-01 20:51:36 +00:00
"tslint-config-prettier": "^1.15.0"
},
"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"
2020-06-01 20:51:36 +00:00
]
2021-09-08 19:49:40 +00:00
}