-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
53 lines (53 loc) · 1.49 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
{
"name": "jwt-webtool",
"version": "1.1.1",
"description": "web tool to parse, generate, and validate JWT, whether signed or encrypted",
"repository": {
"type": "git",
"url": "git://github.com/DinoChiesa/jwt-webtool.git"
},
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "webpack --output-pathinfo --devtool source-map --mode=development --watch --color",
"devbuild": "webpack --output-pathinfo --devtool source-map --mode=development --progress --color",
"build": "rm -rf dist/* && webpack --mode=production --progress --color"
},
"keywords": [
"JWT",
"node-jose"
],
"author": "Dino Chiesa <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@popperjs/core": "^2.11.8",
"bootstrap": "^5.3.3",
"codemirror": "^5.65.2",
"javascript-time-ago": "^2.5.9",
"node-jose": "^2.2.0",
"open-iconic": "^1.1.1"
},
"devDependencies": {
"child_process": "^1.0.2",
"copy-webpack-plugin": "^8.1.1",
"css-loader": "^6.7.1",
"mini-css-extract-plugin": "^1.5.0",
"node-sass": "^7.0.1",
"sass-loader": "^12.3.0",
"style-loader": "^3.3.1",
"url-loader": "^4.1.1",
"webpack": "^5.76.0",
"webpack-cli": "^4.9.1"
},
"engines": {
"node": ">= 18.20.1",
"npm": ">= 9.8.1"
},
"overrides": {
"yargs": "^17.0.1",
"http-cache-semantics": "^4.1.1",
"tough-cookie": "^4.1.3",
"semver": "^7.5.2",
"json5": "^2.2.3"
}
}