-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
51 lines (51 loc) · 1.57 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
{
"name": "auth0-extension-express-tools",
"version": "2.1.1",
"description": "A set of tools and utilities to simplify the development of Auth0 Extensions with Express.",
"main": "src/index.js",
"dependencies": {
"auth0-extension-tools": "^1.5.0",
"cookie-parser": "^1.4.3",
"express": "^4.17.1",
"express-conditional-middleware": "2.0.0",
"express-jwt": "^3.1.0",
"jwks-rsa": "^1.1.1",
"jwt-decode": "^2.1.0",
"webtask-tools": "^3.1.1"
},
"devDependencies": {
"autochecker": "^0.9.2",
"eslint": "^3.9.1",
"eslint-config-auth0-base": "^6.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^3.0.1",
"faucet": "0.0.1",
"jsonwebtoken": "^7.1.9",
"nock": "9.0.9",
"nyc": "10.1.2",
"tape": "4.6.3"
},
"scripts": {
"release": "git tag $npm_package_version && git push --tags && npm publish",
"lint:js": "eslint --ignore-path .gitignore --ignore-pattern webpack .",
"test": "tape tests/*.js tests/**/*.js | faucet",
"test:docker": "autochecker 4.4.5 6.3.1",
"test:coverage": "nyc tape tests/*.js tests/**/*.js | faucet && nyc report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-extensions/auth0-extension-express-tools.git"
},
"keywords": [
"auth0",
"extensions",
"express",
"webtask"
],
"author": "Auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0-extensions/auth0-extension-express-tools/issues"
},
"homepage": "https://github.com/auth0-extensions/auth0-extension-express-tools#readme"
}