serviceberry-jwt
Version:
JSON Web Token authentication for Serviceberry
57 lines (56 loc) • 1.39 kB
JSON
{
"name": "serviceberry-jwt",
"version": "0.3.1",
"description": "JSON Web Token authentication for Serviceberry",
"main": "plugin.js",
"files": [
"plugin.js"
],
"directories": {
"test": "spec"
},
"scripts": {
"build": "npm run lint && npm run test-coverage",
"lint": "npm run lint:src && npm run lint:spec",
"lint:src": "eslint plugin.js",
"lint:spec": "eslint spec/**/*.js",
"test": "jasmine",
"test-coverage": "nyc --include=plugin.js --reporter=lcov --reporter=text npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bob-gray/serviceberry-jwt.git"
},
"keywords": [
"jwt",
"authentication",
"authorization",
"serviceberry",
"json",
"web",
"token",
"http",
"rest",
"api"
],
"author": "Bob Gray <gray.bob98@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/bob-gray/serviceberry-jwt/issues"
},
"homepage": "https://github.com/bob-gray/serviceberry-jwt#readme",
"peerDependencies": {
"serviceberry": ">0.9.0"
},
"devDependencies": {
"@eslint/js": "^9.21.0",
"eslint": "^9.21.0",
"globals": "^16.0.0",
"jasmine": "^5.6.0",
"jasmine-spec-reporter": "^7.0.0",
"nyc": "^17.1.0"
},
"dependencies": {
"jsonwebtoken": "^9.0.0"
}
}