-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
62 lines (62 loc) · 1.71 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
{
"name": "@techrah/text-shortcuts",
"version": "1.0.4",
"description": "Insert text via shortcut keys in Jupyter Lab.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/techrah/jupyterext-text-shortcuts",
"bugs": {
"url": "https://github.com/techrah/jupyterext-text-shortcuts/issues"
},
"license": "MIT",
"author": "Ryan Homer",
"files": [
"lib/**/*.{d.ts,js}",
"style/**/*.css",
"schema/**/*.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/techrah/jupyterext-text-shortcuts.git"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
"prepare": "npm run clean && npm run build",
"test": "jest",
"watch": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/codemirror": "^3.0.0",
"@jupyterlab/notebook": "^3.0.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@types/codemirror": "^0.0.88",
"@types/jest": "^26.0.23",
"@types/lodash": "^4.0.0",
"babel-jest": "^26.6.3",
"jest": "^26.6.3",
"prettier": "2.2.1",
"rimraf": "^3.0.0",
"ts-node": "^9.1.1",
"typescript": "^3.8.3"
},
"sideEffects": [
"style/*.css"
],
"jupyterlab": {
"extension": true,
"schemaDir": "schema"
}
}