This repository was archived by the owner on Jan 26, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.84 KB
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
{
"name": "auth0-extension-tools",
"version": "1.5.2",
"description": "A set of tools and utilities to simplify the development of Auth0 Extensions.",
"main": "src/index.js",
"dependencies": {
"async": "2.1.2",
"auth0": "^2.23.0",
"bluebird": "^3.4.1",
"jsonwebtoken": "^8.3.0",
"jwks-rsa": "1.2.0",
"lodash": "4.17.20",
"lru-memoizer": "1.11.2",
"ms": "2.0.0",
"node-uuid": "^1.4.7",
"promise-retry": "^1.1.1",
"superagent": "3.8.1",
"webtask-tools": "^3.4.1"
},
"devDependencies": {
"autochecker": "^0.9.2",
"eslint": "^3.16.1",
"eslint-config-auth0-base": "^12.0.0",
"eslint-plugin-import": "^2.2.0",
"faucet": "0.0.1",
"mock-fs": "4.4.1",
"nock": "9.0.13",
"nyc": "11.0.3",
"tape": "4.7.0"
},
"scripts": {
"release": "git tag $npm_package_version && git push --tags && npm publish",
"lint:js": "eslint --ignore-path .gitignore --ignore-pattern webpack .",
"test": "./node_modules/tape/bin/tape tests/*.js 'tests/**/*.js' | ./node_modules/faucet/bin/cmd.js",
"test:docker": "./node_modules/autochecker/cli.js 4.4.5 6.3.1",
"test:coverage": "./node_modules/nyc/bin/nyc.js ./node_modules/tape/bin/tape tests/*.js 'tests/**/*.js' | ./node_modules/faucet/bin/cmd.js && ./node_modules/nyc/bin/nyc.js report",
"foo": "npm run test:docker"
},
"repository": {
"type": "git",
"url": "git+https://github.com/auth0-extensions/auth0-extension-tools.git"
},
"keywords": [
"auth0",
"extensions",
"webtask"
],
"author": "Auth0",
"license": "MIT",
"bugs": {
"url": "https://github.com/auth0-extensions/auth0-extension-tools/issues"
},
"nyc": {
"exclude": [
"node_modules",
"bin",
"coverage",
"tests/**"
]
},
"homepage": "https://github.com/auth0-extensions/auth0-extension-tools#readme"
}