-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.31 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.31 KB
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
{
"name": "hwt",
"version": "0.0.2",
"description": "A human friendly JWT inspector for your terminal.",
"type": "module",
"main": "index.js",
"scripts": {
"start": "node --experimental-json-modules index.js",
"prebuild": "esbuild index.js --inject:./scripts/import-meta-url.build.js --define:import.meta.url=import_meta_url --sourcemap --bundle --platform=node --outfile=dist/hwt.cjs",
"build": "pkg --out-path dist --compress GZip dist/hwt.cjs ",
"postbuild": "tar -cvzf dist/hwt.tar.gz dist/hwt-*",
"test": "TZ=UTC node --experimental-vm-modules node_modules/jest/bin/jest.js tests/",
"test:watch": "TZ=UTC node --experimental-vm-modules node_modules/jest/bin/jest.js --watch tests/",
"test:debug": "DEBUG=* TZ=UTC node --experimental-vm-modules node_modules/jest/bin/jest.js --watch tests/"
},
"keywords": [],
"author": "Olivier Rodomond",
"license": "ISC",
"dependencies": {
"chalk": "^5.2.0",
"clipboardy": "^3.0.0",
"commander": "^9.4.1",
"console-table-printer": "^2.11.1",
"debug": "^4.3.4",
"moment": "^2.29.4"
},
"devDependencies": {
"esbuild": "^0.16.13",
"jest": "^29.3.1",
"jwt-simple": "^0.5.6",
"pkg": "^5.8.0",
"yaml": "^2.2.1"
},
"jest": {
"moduleNameMapper": {
"#(.*)": "<rootDir>/node_modules/$1"
}
}
}