webjwt/package.json

44 lines
998 B
JSON
Raw Normal View History

2022-12-22 16:12:15 +00:00
{
"name": "@pushrocks/webjwt",
2022-12-31 19:49:34 +00:00
"version": "1.0.6",
2022-12-22 16:12:15 +00:00
"private": false,
"description": "a package to handle jwt in the web",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.25",
"@gitzone/tsbundle": "^2.0.5",
"@gitzone/tsdoc": "^1.1.10",
2022-12-22 16:21:43 +00:00
"@gitzone/tsrun": "^1.2.39",
2022-12-22 16:12:15 +00:00
"@gitzone/tstest": "^1.0.44",
"@pushrocks/tapbundle": "^5.0.3",
2022-12-31 19:49:34 +00:00
"@types/node": "^18.11.18"
2022-12-22 16:12:15 +00:00
},
2022-12-22 16:21:43 +00:00
"dependencies": {
2022-12-31 19:49:34 +00:00
"@pushrocks/smartstring": "^4.0.5"
2022-12-22 16:21:43 +00:00
},
2022-12-22 16:12:15 +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-12-22 16:23:23 +00:00
}