-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
46 lines (46 loc) · 1.42 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
{
"name": "jwt-webtool",
"version": "1.1.4",
"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": "rimraf dist && webpack --mode=production --progress --color",
"clean": "rimraf package-lock.json && rimraf node_modules"
},
"keywords": ["JWT", "node-jose"],
"author": "Dino Chiesa <dchiesa@google.com>",
"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": "^12.0.2",
"css-loader": "^7.1.2",
"mini-css-extract-plugin": "^2.9.2",
"rimraf": "^6.0.1",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"url-loader": "^4.1.1",
"webpack": "^5.94.0",
"webpack-cli": "^4.9.1"
},
"engines": {
"node": ">= 18.20.1",
"npm": ">= 9.8.1"
},
"overrides": {}
}