smartjwt/package.json

40 lines
871 B
JSON
Raw Normal View History

2019-02-22 23:48:01 +00:00
{
"name": "@pushrocks/smartjwt",
2020-03-28 22:48:18 +00:00
"version": "1.0.10",
2019-02-22 23:48:01 +00:00
"private": false,
"description": "a package for handling jwt",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild)",
"format": "(gitzone format)"
},
"devDependencies": {
2019-10-01 16:04:43 +00:00
"@gitzone/tsbuild": "^2.1.17",
"@gitzone/tstest": "^1.0.24",
"@pushrocks/tapbundle": "^3.0.13",
"@types/node": "^12.7.8",
"tslint": "^5.20.0",
2019-02-22 23:48:01 +00:00
"tslint-config-prettier": "^1.15.0"
},
2019-02-23 12:46:36 +00:00
"dependencies": {
2019-10-01 17:58:53 +00:00
"@pushrocks/smartcrypto": "^1.0.7",
2019-10-01 16:04:43 +00:00
"@types/jsonwebtoken": "^8.3.4",
"jsonwebtoken": "^8.5.1"
2019-10-01 18:03:36 +00:00
},
"files": [
"ts/*",
"ts_web/*",
"dist/*",
"dist_web/*",
"dist_ts_web/*",
"assets/*",
"cli.js",
"npmextra.json",
"readme.md"
]
2019-10-01 18:03:37 +00:00
}