forked from jupyterlab-contrib/jupyterlab_code_formatter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.56 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
{
"name": "@ryantam626/jupyterlab_code_formatter",
"version": "1.5.3",
"description": "Code formatter for JupyterLab.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/ryantam626/jupyterlab_code_formatter",
"bugs": {
"url": "https://github.com/ryantam626/jupyterlab_code_formatter/issues"
},
"license": "MIT",
"author": "Ryan Tam",
"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}",
"schema/*.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/ryantam626/jupyterlab_code_formatter.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf jupyterlab_code_formatter/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch .",
"format": "tslint --fix src/*.ts",
"lint": "tslint src/*.ts",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run clean && jlpm run build:prod"
},
"dependencies": {
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/apputils": "^3.0.0",
"@jupyterlab/builder": "^3.0.0",
"@jupyterlab/fileeditor": "^3.0.0",
"@jupyterlab/mainmenu": "^3.0.0",
"@jupyterlab/notebook": "^3.0.0",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.0.1",
"typescript": "~4.1.3"
},
"jupyterlab": {
"extension": true,
"schemaDir": "schema",
"outputDir": "jupyterlab_code_formatter/labextension",
"discovery": {
"kernel": [
{
"kernel_spec": {
"language": "^python"
},
"base": {
"name": "jupyterlab_code_formatter"
},
"managers": [
"pip",
"conda"
]
}
]
}
}
}