-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
99 lines (99 loc) · 2.13 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
{
"name": "nbpreviewer",
"displayName": "VS Code Jupyter Notebook Previewer",
"description": "An easy to use extension for previewing Jupyter Notebooks within VS Code",
"version": "1.2.2",
"publisher": "jithurjacob",
"author": {
"name": "jithurjacob"
},
"keywords": [
"python",
"jupyter",
"ipython",
"data science",
"kaggle",
"notebook",
"markdown"
],
"icon": "images/jupyter.png",
"recommendations": [
"donjayamanne.python"
],
"galleryBanner": {
"color": "#e46d2e",
"theme": "dark"
},
"qna": false,
"license": "MIT",
"bugs": {
"url": "https://github.com/jithurjacob/vscode-nbpreviewer/issues",
"email": "jithurjacob@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/jithurjacob/vscode-nbpreviewer.git"
},
"homepage": "https://github.com/jithurjacob/vscode-nbpreviewer/blob/master/README.md",
"engines": {
"vscode": "^1.29.0"
},
"categories": [
"Programming Languages",
"Other"
],
"main": "./src/extension",
"contributes": {
"languages": [
{
"id": "jupyter",
"aliases": [
"Jupyter",
"jupyter"
],
"extensions": [
".ipynb"
]
}
],
"commands": [
{
"command": "jupyter.showPreview",
"title": "Show preview",
"category": "Jupyter"
}
],
"menus": {
"editor/title": [
{
"command": "jupyter.showPreview",
"when": "editorLangId == jupyter",
"group": "navigation"
}
]
}
},
"activationEvents": [
"onLanguage:jupyter",
"onCommand:jupyter.showPreview"
],
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.6",
"eslint": "^4.6.1",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"file-url": "^2.0.2",
"jsdom": "^11.5.1",
"node-prismjs": "^0.1.1",
"notebookjs": "^0.2.6",
"prismjs": "^1.9.0"
}
}