-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
108 lines (108 loc) · 3 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
107
108
{
"name": "auth0-account-link-extension",
"version": "2.6.5",
"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 .",
"lint:fix": "eslint --fix .",
"serve:dev": "gulp run",
"client:build": "minify --clean --output dist/assets/link.$npm_package_version.min.css public/css/link.css && minify --clean --output dist/assets/admin.$npm_package_version.min.css public/css/admin.css",
"extension:build": "a0-ext build:server ./webtask.js ./dist && cp ./dist/auth0-account-link-extension.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": [
"@auth0/[email protected]",
"webtask-tools",
]
},
"dependencies": {
"@auth0/hapi": "13.5.1",
"auth0": "^2.8.0",
"auth0-extension-hapi-tools": "1.3.1",
"auth0-extension-tools": "1.4.0",
"boom": "3.2.2",
"hapi-auth-jwt2": "7.0.1",
"inert": "4.0.1",
"joi": "9.0.4",
"jsonwebtoken": "^8.1.0",
"jwks-rsa": "1.1.1",
"lodash": "^3.10.1",
"nconf": "^0.8.4",
"open": "^0.0.5",
"request": "^2.81.0",
"webtask-tools": "^3.2.0",
"winston": "1.0.0"
},
"devDependencies": {
"auth0-extensions-cli": "^4.0.4",
"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"
}
}