UNPKG

2.47 kBJSONView Raw
1{
2 "name": "@jupyterlab/cells",
3 "version": "3.4.3",
4 "description": "JupyterLab - Notebook Cells",
5 "homepage": "https://github.com/jupyterlab/jupyterlab",
6 "bugs": {
7 "url": "https://github.com/jupyterlab/jupyterlab/issues"
8 },
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/jupyterlab/jupyterlab.git"
12 },
13 "license": "BSD-3-Clause",
14 "author": "Project Jupyter",
15 "sideEffects": [
16 "style/*.css",
17 "style/index.js"
18 ],
19 "main": "lib/index.js",
20 "types": "lib/index.d.ts",
21 "style": "style/index.css",
22 "directories": {
23 "lib": "lib/"
24 },
25 "files": [
26 "lib/*.d.ts",
27 "lib/*.js.map",
28 "lib/*.js",
29 "style/*.css",
30 "style/index.js"
31 ],
32 "scripts": {
33 "build": "tsc -b",
34 "build:test": "tsc --build tsconfig.test.json",
35 "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
36 "docs": "typedoc src",
37 "test": "jest",
38 "test:cov": "jest --collect-coverage",
39 "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
40 "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
41 "test:watch": "jest --runInBand --watch",
42 "watch": "tsc -b --watch"
43 },
44 "dependencies": {
45 "@jupyterlab/apputils": "^3.4.3",
46 "@jupyterlab/attachments": "^3.4.3",
47 "@jupyterlab/codeeditor": "^3.4.3",
48 "@jupyterlab/codemirror": "^3.4.3",
49 "@jupyterlab/coreutils": "^5.4.3",
50 "@jupyterlab/filebrowser": "^3.4.3",
51 "@jupyterlab/nbformat": "^3.4.3",
52 "@jupyterlab/observables": "^4.4.3",
53 "@jupyterlab/outputarea": "^3.4.3",
54 "@jupyterlab/rendermime": "^3.4.3",
55 "@jupyterlab/services": "^6.4.3",
56 "@jupyterlab/shared-models": "^3.4.3",
57 "@jupyterlab/ui-components": "^3.4.3",
58 "@lumino/algorithm": "^1.9.0",
59 "@lumino/coreutils": "^1.11.0",
60 "@lumino/domutils": "^1.8.0",
61 "@lumino/dragdrop": "^1.13.0",
62 "@lumino/messaging": "^1.10.0",
63 "@lumino/polling": "^1.9.0",
64 "@lumino/signaling": "^1.10.0",
65 "@lumino/virtualdom": "^1.14.0",
66 "@lumino/widgets": "^1.30.0",
67 "marked": "^4.0.10",
68 "react": "^17.0.1"
69 },
70 "devDependencies": {
71 "@jupyterlab/testutils": "^3.4.3",
72 "@types/jest": "^26.0.10",
73 "@types/marked": "^4.0.1",
74 "@types/react": "^17.0.0",
75 "jest": "^26.4.2",
76 "rimraf": "~3.0.0",
77 "ts-jest": "^26.3.0",
78 "typedoc": "~0.21.2",
79 "typescript": "~4.1.3"
80 },
81 "publishConfig": {
82 "access": "public"
83 },
84 "styleModule": "style/index.js"
85}