forked from morphatic/feathers-auth0-authorize-hook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.86 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@morphatic/feathers-auth0-authorize-hook",
"version": "1.0.3",
"private": false,
"description": "A \"before\" hook for FeathersJS to authorize requests accompanied by an Auth0-issued JWT.",
"main": "lib/",
"directories": {
"lib": "lib"
},
"scripts": {
"changelog": "github_changelog_generator && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"eslint": "eslint lib/. test/. --config .eslintrc.json",
"mocha": "mocha --recursive --timeout 10000",
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:major": "npm version major && npm publish",
"release:minor": "npm version minor && npm publish",
"release:patch": "npm version patch && npm publish",
"release:prerelease": "npm version prerelease && npm publish --tag pre",
"test": "npm run eslint && nyc npm run mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/morphatic/feathers-auth0-authorize-hook.git"
},
"keywords": [
"auth0",
"feathers",
"feathers-plugin",
"hook",
"jwt"
],
"author": "Morgan Benton <[email protected]> (https://morphatic.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/morphatic/feathers-auth0-authorize-hook/issues"
},
"homepage": "https://github.com/morphatic/feathers-auth0-authorize-hook#readme",
"devDependencies": {
"@feathersjs/configuration": "^2.0.6",
"@feathersjs/feathers": "^3.3.1",
"eslint": "^5.16.0",
"feathers-memory": "^3.0.2",
"feathers-nedb": "^4.0.1",
"mocha": "^6.1.4",
"nedb": "^1.8.0",
"nyc": "^14.1.1"
},
"dependencies": {
"@feathersjs/errors": "^3.3.6",
"jsonwebtoken": "^8.5.1",
"request": "^2.88.0",
"request-promise": "^4.2.4"
},
"engines": {
"node": ">= 8"
}
}