-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.21 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "vscode-jmespath",
"displayName": "JMESPath for VSCode",
"description": "Evaluate JMESPath queries within Visual Studio Code",
"icon": "images/jmespath.png",
"version": "0.0.6",
"main": "./out/src/jmespathMain",
"scripts": {
"vscode:prepublish": "npm run compile",
"lint": "node ./node_modules/tslint/bin/tslint src/**/*.ts",
"compile": "npm run lint && tsc -p ./",
"compile:watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/node": "^11.13.7",
"@types/sinon": "^7.0.11",
"@types/yamljs": "^0.2.30",
"chai": "^4.2.0",
"sinon": "^7.3.2",
"sinon-test": "^2.4.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5",
"vscode": "^1.1.33"
},
"dependencies": {
"jmespath": "^0.15.0",
"yamljs": "^0.2.8"
},
"repository": {
"type": "git",
"url": "https://github.com/j--wong/vscode-jmespath.git"
},
"publisher": "joshwong",
"author": {
"name": "Josh Wong"
},
"galleryBanner": {
"color": "#13254a",
"theme": "dark"
},
"private": true,
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"keywords": [
"jmespath",
"json",
"query"
],
"activationEvents": [
"onCommand:jmespath.query"
],
"contributes": {
"commands": [
{
"title": "JMESPath: Query JSON",
"command": "jmespath.query"
}
],
"keybindings": [
{
"command": "jmespath.query",
"key": "ctrl+shift+j",
"mac": "cmd+shift+j",
"when": "editorTextFocus && editorLangId == 'json'"
}
],
"configuration": {
"title": "",
"properties": {
"jmespath.rememberRecentExpressions": {
"type": "boolean",
"default": true,
"description": "Specify whether or not to record recently entered expressions"
},
"jmespath.maxRecentExpressionsToRemember": {
"type": "integer",
"default": 25,
"description": "Specify the number of expressions to remember"
}
}
}
}
}