-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
122 lines (122 loc) · 3.66 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
{
"name": "@g2nb/jupyter-wysiwyg",
"version": "23.03.0",
"description": "WYSIWYG editing functionality for markdown/HTML cells in Jupyter",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.{js,css}",
"style/*.{js,css,png,svg}",
"dist/*.{js,css}",
"style/index.js"
],
"homepage": "https://github.com/g2nb/jupyter-wysiwyg",
"bugs": {
"url": "https://github.com/g2nb/jupyter-wysiwyg/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "Thorin Tabor",
"email": "tmtabor@cloud.ucsd.edu"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/g2nb/jupyter-wysiwyg"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:all": "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:all": "jlpm run clean:lib && jlpm run clean:labextension",
"clean:labextension": "rimraf jupyter-wysiwyg/labextension",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jlpm run build",
"prepack": "jlpm run build:lib",
"prepare": "jlpm run clean && jlpm run build:all",
"test": "jlpm run test:firefox",
"test:chrome": "karma start --browsers=Chrome tests/karma.conf.js",
"test:debug": "karma start --browsers=Chrome --singleRun=false --debug=true tests/karma.conf.js",
"test:firefox": "karma start --browsers=Firefox tests/karma.conf.js",
"test:ie": "karma start --browsers=IE tests/karma.conf.js",
"watch": "run-p watch:src watch:labextension",
"watch:labextension": "jupyter labextension watch .",
"watch:lib": "tsc -w",
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyter-widgets/base": "^4.0.0",
"@jupyterlab/application": "^3.5.3",
"@jupyterlab/mainmenu": "^3.5.3",
"@jupyterlab/notebook": "^3.5.3",
"tinymce": "^5.9.2"
},
"devDependencies": {
"@jupyterlab/apputils": "^3.5.3",
"@jupyterlab/builder": "^3.5.3",
"@jupyterlab/codeeditor": "3.5.3",
"@jupyterlab/ui-components": "^3.5.3",
"@lumino/application": "^1.31.3",
"@lumino/widgets": "^1.37.1",
"@types/backbone": "^1.4.4",
"@types/node": "^14.14.27",
"@typescript-eslint/eslint-plugin": "^4.8.1",
"@typescript-eslint/parser": "^4.8.1",
"backbone": "^1.2.3",
"css-loader": "^5.0.2",
"eslint": "^7.14.0",
"expect.js": "^0.3.1",
"file-loader": "^6.2.0",
"fs-extra": "^9.1.0",
"karma": "^6.1.1",
"karma-typescript": "^5.3.0",
"mkdirp": "^1.0.4",
"mocha": "^8.3.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"ts-loader": "^8.0.17",
"typescript": "~4.1.3",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0"
},
"jupyterlab": {
"extension": "lib/plugin",
"sharedPackages": {
"@jupyter-widgets/base": {
"bundled": false,
"singleton": true
}
},
"discovery": {
"kernel": [
{
"kernel_spec": {
"language": "^python"
},
"base": {
"name": "jupyter-wysiwyg"
},
"managers": [
"pip",
"conda"
]
}
]
},
"outputDir": "jupyter-wysiwyg/labextension"
},
"styleModule": "style/index.js"
}