-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 2.23 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "json-pretty-printer",
"displayName": "JSON Pretty Printer",
"description": "Visual Studio Code JSON Pretty Printer",
"version": "1.1.0",
"publisher": "euskadi31",
"author": {
"name": "Axel Etcheverry",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.27.0"
},
"license": "MIT",
"icon": "icons/json-pretty-printer-logo.png",
"galleryBanner": {
"color": "#2d323b",
"theme": "dark"
},
"repository": {
"type": "git",
"url": "https://github.com/euskadi31/vscode-json-pretty-printer"
},
"categories": [
"Formatters"
],
"keywords": [
"json",
"pretty-print",
"pretty-printer",
"formatter"
],
"activationEvents": [
"onCommand:extension.prettyPrint"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.prettyPrint",
"title": "JSON Pretty Print"
}
]
},
"badges": [
{
"url": "https://travis-ci.org/euskadi31/vscode-json-pretty-printer.svg?branch=master",
"href": "https://travis-ci.org/euskadi31/vscode-json-pretty-printer",
"description": "Travis CI"
}
],
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"package": "npm run compile && vsce package -o json-pretty-printer.vsix --baseContentUrl https://raw.githubusercontent.com/euskadi31/vscode-json-pretty-printer/master/",
"publish": "npm run package && vsce publish --baseContentUrl https://raw.githubusercontent.com/euskadi31/vscode-json-pretty-printer/master/"
},
"devDependencies": {
"typescript": "^5.7.3",
"vscode": "^1.1.37",
"tslint": "^6.1.3",
"@types/node": "^22.10.6",
"@types/mocha": "^10.0.10"
},
"dependencies": {
"@types/strip-json-comments": "3.0.0",
"json-to-ast": "^2.1.0",
"strip-json-comments": "^5.0.1"
}
}