-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
71 lines (71 loc) · 1.88 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
{
"name": "json-flattener",
"displayName": "JSON Flattener",
"description": "Flattens multi-level JSON to single-level dot notation.",
"version": "1.1.2",
"icon": "images/logo128.png",
"main": "./extension.js",
"publisher": "Appurist",
"author": "Paul Whittemore <dev@appurist.com>",
"contributors": [
"Paul Whittemore <dev@appurist.com>",
"tomByrer"
],
"repository": {
"type": "git",
"url": "git://github.com/appurist/vscode-json-flattener.git"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"build": "vsce package",
"release": "vsce publish"
},
"categories": [
"Formatters"
],
"contributes": {
"commands": [
{
"command": "appurist.json-flattener.clipboard",
"title": "JSON Flattener: Flatten (Clipboard)"
},
{
"command": "appurist.json-flattener.selection",
"title": "JSON Flattener: Flatten (Selection)"
},
{
"command": "appurist.json-flattener.pretty",
"title": "JSON Flattener: Pretty (Selection)"
},
{
"command": "appurist.json-flattener.unpretty",
"title": "JSON Flattener: Unpretty (Selection)"
},
{
"command": "appurist.json-flattener.selection-dotnet",
"title": "JSON Flattener: Flatten (Selection - dotnet__separator)"
},
{
"command": "appurist.json-flattener.selection-javascript",
"title": "JSON Flattener: Flatten (Selection - JavaScript[arrays])"
}
]
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.52",
"@types/vscode": "^1.95.0",
"@vscode/vsce": "^3.2.1",
"eslint": "^6.8.0",
"glob": "^7.2.3",
"mocha": "^7.2.0",
"typescript": "^3.9.10",
"vscode-test": "^1.6.1"
},
"engines": {
"vscode": "^1.95.0"
}
}