-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "json-format-converter",
"version": "0.1.2",
"description": "A powerful Chrome extension and standalone web app for converting between JSON, JSONC, and JSON5 formats with advanced editing features and comment preservation",
"main": "src/js/converter.js",
"scripts": {
"dev": "node scripts/dev-server.js",
"build": "node scripts/build.js",
"build:firefox": "node scripts/build.js firefox",
"build:chrome": "node scripts/build.js chrome",
"build:standalone": "node scripts/build.js standalone",
"serve": "npx serve -s -l 3000 dist",
"clean": "node scripts/clean.js",
"update:libs": "node scripts/update-libs.js",
"validate": "node scripts/validate.js",
"test": "npm run build && node scripts/validate.js",
"sign": "node scripts/sign.js",
"sign:generate-key": "node scripts/sign.js --generate-key",
"sign:chrome": "node scripts/sign.js --no-firefox",
"sign:firefox": "node scripts/sign.js --no-chrome",
"build:icons": "cd src/icons && convert icon.svg -resize 16x16 icon16.png && convert icon.svg -resize 32x32 icon32.png && convert icon.svg -resize 48x48 icon48.png && convert icon.svg -resize 128x128 icon128.png"
},
"keywords": [
"json",
"jsonc",
"json5",
"converter",
"formatter",
"chrome-extension",
"web-app"
],
"author": "Jetsung Chan <i@jetsung.com>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/idev-sig/json-format-converter.git"
},
"bugs": {
"url": "https://github.com/idev-sig/json-format-converter/issues"
},
"homepage": "https://github.com/idev-sig/json-format-converter#readme",
"dependencies": {
"chalk": "^4.1.2",
"fs-extra": "^10.1.0",
"serve-handler": "^6.1.5"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.11.18"
},
"files": [
"manifest.json",
"popup.html",
"standalone.html",
"styles.css",
"converter.js",
"popup.js",
"lib/",
"icons/",
"README.md"
]
}