-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
149 lines (149 loc) · 3.95 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "vscode-ni-python-dataplugins",
"author": "National Instruments",
"version": "1.0.2",
"displayName": "NI Python DataPlugins",
"description": "Create and export NI DataPlugins in Python",
"publisher": "NI",
"license": "MIT",
"bugs": {
"url": "https://github.com/ni/vscode-ni-python-dataplugins/issues"
},
"engines": {
"vscode": "^1.56.0"
},
"categories": [
"Data Science",
"Debuggers",
"Snippets"
],
"icon": "icon.png",
"repository": {
"type": "git",
"url": "https://github.com/ni/vscode-ni-python-dataplugins"
},
"galleryBanner": {
"color": "#2d2c2c",
"theme": "dark"
},
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "nipy.createDataPlugin",
"title": "NI DataPlugins: Create new Python-DataPlugin"
},
{
"command": "nipy.exportPlugin",
"title": "NI DataPlugins: Export DataPlugin",
"category": "NI DataPlugins"
},
{
"command": "nipy.registerPlugin",
"title": "NI DataPlugins: Register DataPlugin for Development",
"category": "NI DataPlugins"
}
],
"keybindings": [
{
"command": "nipy.registerPlugin",
"key": "ctrl+alt+F5",
"when": "editorTextFocus"
}
],
"configuration": [
{
"title": "Python DataPlugins",
"properties": {
"Python-DataPlugins.exportPath": {
"type": "string",
"default": null,
"description": "Specifies the folder path for DataPlugin export. If empty, a File-Save dialog is prompted for every export. Requires a reload of VSCode."
}
}
}
],
"menus": {
"commandPalette": [
{
"command": "nipy.exportPlugin",
"when": "editorLangId == python"
},
{
"command": "nipy.registerPlugin",
"when": "editorLangId == python"
}
],
"explorer/context": [
{
"when": "resourceLangId == python",
"command": "nipy.exportPlugin",
"group": "NI"
},
{
"when": "resourceLangId == python",
"command": "nipy.registerPlugin",
"group": "NI"
},
{
"when": "explorerResourceIsFolder",
"command": "nipy.createDataPlugin",
"group": "NI"
}
]
},
"snippets": [
{
"language": "python",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"compile": "tsc -p ./",
"createpkg": "vsce package -o vscode-ni-python-dataplugins.vsix",
"depcheck": "npm-check -u",
"lint": "npm run eslint",
"eslint": "eslint ./",
"mdlint": "./node_modules/.bin/markdownlint README.md examples/**/*.md",
"pretest": "npm run compile && npm run lint",
"test": "node ./out/test/runTest.js",
"test:e2e": "extest setup-and-run out/test/e2e/*.js -e ./src/test/e2e -u -o ./src/test/e2e/settings.json",
"vscode:prepublish": "npm run compile",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@ni/eslint-config": "^1.0.0",
"@types/crc": "^3.4.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^15.12.2",
"@types/vscode": "^1.56.0",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"glob": "^7.1.7",
"markdownlint-cli": "^0.27.1",
"mocha": "^9.0.0",
"npm-check": "^5.9.2",
"prettier": "^2.3.1",
"typescript": "^4.3.2",
"vsce": "^1.93.0",
"vscode-extension-tester": "^4.0.3",
"vscode-test": "^1.5.2"
},
"dependencies": {
"@types/fs-extra": "^9.0.11",
"@types/uuid": "^8.3.0",
"crc": "^3.8.0",
"fs-extra": "^10.0.0",
"guid-typescript": "^1.0.9",
"open": "^8.2.0"
}
}