This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
forked from auth0-extensions/auth0-account-link-extension
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
106 lines (106 loc) · 2.83 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "auth0-account-link-extension",
"version": "2.3.0",
"description": "Auth0 Account Link Extension",
"main": "index.js",
"engines": {
"node": ">=6.9"
},
"scripts": {
"start": "node ./index.js",
"test": "nyc --all mocha test --recursive --timeout 5000",
"test:integration": "mocha integration --recursive --timeout 50000",
"lint": "eslint .",
"serve:dev": "gulp run",
"client:build": "minify --clean public/css/link.css && minify --clean public/css/admin.css",
"extension:build": "a0-ext build:server ./webtask.js ./dist && cp ./dist/auth0-account-link.extension.$npm_package_version.js ./build/bundle.js",
"build": "yarn run client:build && yarn run extension:build"
},
"author": "Auth0",
"license": "MIT",
"auth0-extension": {
"nodeTarget": "4.2.0",
"bundleModules": true,
"externals": [
"webtask-tools",
]
},
"dependencies": {
"auth0": "^2.8.0",
"auth0-extension-hapi-tools": "1.2.2",
"auth0-extension-tools": "1.3.1",
"boom": "3.2.2",
"hapi": "13.5.0",
"hapi-auth-jwt2": "7.0.1",
"inert": "4.0.1",
"joi": "9.0.4",
"jsonwebtoken": "^8.1.0",
"jwks-rsa": "1.1.1",
"nconf": "^0.8.4",
"open": "^0.0.5",
"request": "^2.85.0",
"webtask-tools": "^3.2.0",
"winston": "1.0.0"
},
"devDependencies": {
"@babel/runtime": "7.0.0-beta.46",
"auth0-extensions-cli": "1.1.0",
"chai": "^4.1.0",
"eslint": "^4.3.0",
"eslint-config-auth0": "^11.0.0",
"eslint-config-auth0-base": "^13.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.1.0",
"gulp": "^3.9.1",
"gulp-nodemon": "^2.2.1",
"gulp-util": "^3.0.8",
"minifier": "^0.8.1",
"mocha": "^3.5.0",
"ngrok": "^2.2.15",
"nodemon": "^1.11.0",
"nyc": "^11.1.0",
"puppeteer": "^0.11.0"
}
}