webjwt/package.json

58 lines
1.3 KiB
JSON
Raw Normal View History

2022-12-22 16:12:15 +00:00
{
2023-08-21 06:26:47 +00:00
"name": "@push.rocks/webjwt",
2023-08-21 10:38:33 +00:00
"version": "1.0.9",
2022-12-22 16:12:15 +00:00
"private": false,
2024-04-14 16:40:21 +00:00
"description": "A package for handling JWTs in web environments.",
2022-12-22 16:12:15 +00:00
"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": {
2023-08-21 10:38:33 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsbundle": "^2.0.8",
2022-12-22 16:12:15 +00:00
"@gitzone/tsdoc": "^1.1.10",
2023-08-21 10:38:33 +00:00
"@gitzone/tsrun": "^1.2.44",
"@gitzone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.5.1"
2022-12-22 16:12:15 +00:00
},
2022-12-22 16:21:43 +00:00
"dependencies": {
2023-08-21 10:38:33 +00:00
"@push.rocks/smartstring": "^4.0.8"
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"
2024-04-14 16:40:21 +00:00
],
"keywords": [
"jwt",
"web",
"authentication",
"security",
"token parsing",
"JSON Web Tokens",
"smartstring",
"typescript"
2024-05-29 12:17:37 +00:00
],
"homepage": "https://code.foss.global/push.rocks/webjwt",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/webjwt.git"
}
2024-04-14 16:40:21 +00:00
}