smartjwt/package.json

60 lines
1.4 KiB
JSON
Raw Permalink Normal View History

2019-02-22 23:48:01 +00:00
{
2023-07-10 00:56:39 +00:00
"name": "@push.rocks/smartjwt",
2024-02-13 00:18:57 +00:00
"version": "2.0.4",
2019-02-22 23:48:01 +00:00
"private": false,
2024-04-14 15:46:22 +00:00
"description": "A JavaScript package for creating and verifying JWTs with strong typing support.",
2021-02-09 10:26:42 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2019-02-22 23:48:01 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
2024-02-13 00:18:57 +00:00
"build": "(tsbuild)"
2019-02-22 23:48:01 +00:00
},
"devDependencies": {
2024-02-13 00:18:57 +00:00
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.86",
2023-08-21 06:53:14 +00:00
"@push.rocks/tapbundle": "^5.0.15",
2024-02-13 00:18:57 +00:00
"@types/node": "^20.11.17"
2019-02-22 23:48:01 +00:00
},
2019-02-23 12:46:36 +00:00
"dependencies": {
2024-02-13 00:18:57 +00:00
"@push.rocks/smartcrypto": "^2.0.4",
"@tsclass/tsclass": "^4.0.51",
"@types/jsonwebtoken": "^9.0.5",
"jsonwebtoken": "^9.0.2"
2019-10-01 18:03:36 +00:00
},
"files": [
2021-02-20 18:02:53 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-10-01 18:03:36 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-02-20 18:02:53 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-10-24 05:14:17 +00:00
],
2024-04-14 15:46:22 +00:00
"type": "module",
"keywords": [
"jwt",
"jsonwebtoken",
"authentication",
"security",
"typescript",
"crypto",
"public key",
"private key",
"token validation",
"token creation"
2024-05-29 12:13:52 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartjwt",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartjwt.git"
}
2024-04-14 15:46:22 +00:00
}