This repository has been archived by the owner on Jun 21, 2023. It is now read-only.
forked from auth0/idtoken-verifier
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.26 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": "idtoken-verifier",
"version": "1.1.0",
"description": "A lightweight library to decode and verify RS JWT meant for the browser.",
"main": "src/index.js",
"scripts": {
"start": "gulp dev",
"build": "gulp build",
"test": "mocha test/**/*.test.js",
"test:watch": "mocha --watch -R min test/*.test.js",
"test:coverage": "istanbul cover _mocha -R test/*.test.js",
"ci:test": "istanbul cover _mocha --report lcovonly -R test/**/* -- -R mocha-multi --reporter-options spec=-,mocha-junit-reporter=-",
"ci:coverage": "codecov",
"lint": "eslint ./src",
"jsdoc:generate": "jsdoc --configure .jsdoc.json --verbose",
"release:clean": "node scripts/cleanup.js",
"preversion": "node scripts/prepare.js",
"version": "node scripts/changelog.js && node scripts/jsdocs.js && node scripts/telemetry.js",
"postversion": "npm run release:clean",
"upload": "ccu build"
},
"author": "Auth0",
"license": "MIT",
"dependencies": {
"base64-js": "^1.2.0",
"crypto-js": "^3.1.9-1",
"jsbn": "^0.1.0",
"superagent": "^3.3.1",
"url-join": "^1.1.0"
},
"keywords": [
"auth0",
"auth",
"authentication",
"jwt",
"verification",
"RS256",
"browser"
],
"repository": "[email protected]:auth0/idtoken-verifier.git",
"devDependencies": {
"@auth0/component-cdn-uploader": "^2.0.0",
"codecov": "^1.0.1",
"eslint": "3.7.1",
"eslint-config-auth0-base": "6.0.0",
"eslint-plugin-import": "1.16.0",
"expect.js": "^0.2.0",
"gulp": "^3.9.1",
"gulp-util": "^3.0.7",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"jsdoc-to-markdown": "^2.0.1",
"minami": "^1.2.3",
"mocha": "^3.1.2",
"mocha-junit-reporter": "^1.13.0",
"mocha-multi": "^0.11.0",
"moment": "^2.18.1",
"sinon": "^1.17.6",
"smart-banner-webpack-plugin": "^2.0.0",
"unminified-webpack-plugin": "^1.1.1",
"webpack": "^1.13.2",
"webpack-core": "^0.6.8",
"webpack-custom-var-library-name-plugin": "^1.0.0",
"webpack-dev-server": "^1.16.2",
"webpack-hot-middleware": "^2.13.2",
"webpack-stream": "^3.2.0"
},
"ccu": {
"name": "idtoken-verifier",
"cdn": "https://cdn.auth0.com",
"mainBundleFile": "idtoken-verifier.min.js",
"bucket": "assets.us.auth0.com"
}
}