-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
74 lines (74 loc) · 2.28 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "@morphatic/feathers-auth0-strategy",
"version": "1.0.1",
"private": false,
"description": "An RS256 authentication strategy for FeathersJS to support authentication with access tokens generated client-side with Auth0",
"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 && yarn 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": "yarn eslint && yarn mocha",
"test:coverage": "yarn eslint && nyc mocha",
"test:watch": "yarn eslint && mocha --recursive --timeout 10000 --watch",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/morphatic/feathers-auth0-strategy.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-strategy/issues"
},
"homepage": "https://github.com/morphatic/feathers-auth0-strategy#readme",
"devDependencies": {
"@feathersjs/configuration": "^4.3.4",
"@feathersjs/express": "^4.3.4",
"@feathersjs/feathers": "^4.3.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^7.12.1",
"feathers-nedb": "^5.0.2",
"mocha": "^8.2.0",
"nedb": "^1.8.0",
"nyc": "^15.1.0",
"semantic-release": "^17.2.2"
},
"dependencies": {
"@feathersjs/authentication": "^4.3.4",
"axios": "^0.21.0",
"feathers-hooks-common": "^5.0.4",
"feathers-memory": "^4.0.1"
},
"engines": {
"node": ">= 8"
},
"nyc": {
"reporter": [
"text",
"html"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}