-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·58 lines (58 loc) · 1.46 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
{
"name": "@videsk/jwt-webauth",
"version": "1.0.0",
"description": "Auto manage JWT access and refresh token like a session, with server-side validation and renew.",
"umdName": "WebAuth",
"browser": "dist/jwt-webauth.min.js",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "mocha ./test/auth.test.js --exit",
"coverage:report": "./node_modules/nyc/bin/nyc.js --reporter=lcov --reporter=text mocha"
},
"keywords": [
"authorization",
"webauth",
"JWT",
"key"
],
"author": "videsk",
"repository": {
"type": "git",
"url": "https://github.com/videsk/jwt-webauth.git"
},
"homepage": "https://developers.videsk.io",
"license": "LGPL-2.1",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"@rollup/plugin-replace": "^4.0.0",
"@videsk/window-node-polyfill": "^1.0.1",
"atob": "^2.1.2",
"auth-header": "^1.0.0",
"body-parser": "^1.19.0",
"chai": "^4.3.3",
"chai-http": "^4.3.0",
"codecov": "^3.8.3",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"mocha": "^8.3.0",
"nyc": "^15.1.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-terser": "^7.0.2",
"semantic-release": "^19.0.2"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"master"
]
}
}