forked from jupyterlab-contrib/jupyterlab-vim
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "@mshong/jupyterlab_vim",
"version": "0.12.4",
"description": "Code cell vim bindings",
"author": "moongi simon hong",
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/moongi-simon-hong/jupyterlab-vim",
"bugs": {
"url": "https://github.com/moongi-simon-hong/jupyterlab-vim/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/moongi-simon-hong/jupyterlab-vim.git"
},
"keywords": [
"extension",
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"lint": "tslint",
"prepare": "npm run build",
"watch": "tsc -w"
},
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"jupyterlab": {
"extension": true
},
"dependencies": {
"@jupyterlab/application": "^2.0.1",
"@jupyterlab/cells": "^2.0.1",
"@jupyterlab/codemirror": "^2.0.1",
"@jupyterlab/notebook": "^2.0.1",
"@lumino/commands": "^1.10.1",
"@lumino/coreutils": "^1.4.2",
"@lumino/domutils": "^1.1.7",
"@types/codemirror": "^0.0.87",
"react": "16.9.0"
},
"devDependencies": {
"rimraf": "^2.6.2",
"tslint": "^6.1.2",
"typescript": "^3.9.3"
}
}