|
1 | 1 | { |
2 | 2 | "name": "jupyterlab-code-snippets", |
3 | | - "version": "2.1.1", |
| 3 | + "version": "2.2.0", |
4 | 4 | "description": "EXPERIMENTAL: Save, reuse, and share code snippets using JupyterLab Code Snippets", |
5 | 5 | "keywords": [ |
6 | 6 | "jupyter", |
|
12 | 12 | "url": "https://github.com/jupytercalpoly/jupyterlab-code-snippets.git/issues" |
13 | 13 | }, |
14 | 14 | "license": "BSD-3-Clause", |
15 | | - "author": "Jay Ahn, Kiran Pinnipati", |
| 15 | + "author": { |
| 16 | + "name": "Jay Ahn, Kiran Pinnipati", |
| 17 | + "email": "aju960219@gmail.com" |
| 18 | + }, |
16 | 19 | "files": [ |
17 | 20 | "lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", |
18 | 21 | "style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}", |
|
24 | 27 | "style": "style/index.css", |
25 | 28 | "repository": { |
26 | 29 | "type": "git", |
27 | | - "url": "https://github.com/jupytercalpoly/jupyterlab-code-snippets.git.git" |
| 30 | + "url": "https://github.com/jupytercalpoly/jupyterlab-code-snippets.git" |
28 | 31 | }, |
29 | 32 | "scripts": { |
30 | 33 | "build": "jlpm run build:lib && jlpm run build:labextension:dev", |
31 | | - "build:all": "jlpm run build:labextension", |
32 | 34 | "build:labextension": "jupyter labextension build .", |
33 | 35 | "build:labextension:dev": "jupyter labextension build --development True .", |
34 | 36 | "build:lib": "tsc", |
35 | | - "build:prod": "jlpm run build:lib && jlpm run build:labextension", |
| 37 | + "build:prod": "jlpm run clean && jlpm run build:lib && jlpm run build:labextension", |
36 | 38 | "clean": "jlpm run clean:lib", |
37 | | - "clean:all": "jlpm run clean:lib && jlpm run clean:labextension", |
38 | | - "clean:labextension": "rimraf code_snippet/labextension", |
| 39 | + "clean:labextension": "rimraf jupyterlab-code-snippets/labextension", |
39 | 40 | "clean:lib": "rimraf lib tsconfig.tsbuildinfo", |
| 41 | + "clean:all": "jlpm clean:lib && jlpm clean:labextension", |
40 | 42 | "eslint": "eslint . --ext .ts,.tsx --fix", |
41 | 43 | "eslint:check": "eslint . --ext .ts,.tsx", |
42 | 44 | "format": "prettier \"src/**/*.{ts, tsx}\" --check", |
43 | | - "install:extension": "jupyter labextension develop --overwrite .", |
| 45 | + "install:extension": "jlpm build", |
44 | 46 | "prepare": "jlpm run clean && jlpm run build:prod", |
45 | 47 | "watch": "run-p watch:src watch:labextension", |
46 | 48 | "watch:labextension": "jupyter labextension watch .", |
|
53 | 55 | "postpublish": "pinst --enable" |
54 | 56 | }, |
55 | 57 | "dependencies": { |
56 | | - "@jupyterlab/application": "^3.0.10", |
57 | | - "@jupyterlab/apputils": "^3.0.8", |
58 | | - "@jupyterlab/cells": "^3.0.10", |
59 | | - "@jupyterlab/celltags": "^3.0.10", |
60 | | - "@jupyterlab/docmanager": "^3.0.10", |
61 | | - "@jupyterlab/docregistry": "^3.0.10", |
62 | | - "@jupyterlab/fileeditor": "^3.0.10", |
63 | | - "@jupyterlab/nbconvert-css": "^3.0.10", |
64 | | - "@jupyterlab/nbformat": "^3.0.5", |
65 | | - "@jupyterlab/notebook": "^3.0.10", |
66 | | - "@jupyterlab/rendermime": "^3.0.9", |
67 | | - "@jupyterlab/services": "^6.0.8", |
| 58 | + "@jupyterlab/application": "^3.5.2", |
| 59 | + "@jupyterlab/apputils": "^3.5.2", |
| 60 | + "@jupyterlab/cells": "^3.5.0", |
| 61 | + "@jupyterlab/celltags": "^3.5.2", |
| 62 | + "@jupyterlab/docmanager": "^3.5.2", |
| 63 | + "@jupyterlab/docregistry": "^3.5.0", |
| 64 | + "@jupyterlab/fileeditor": "^3.5.2", |
| 65 | + "@jupyterlab/nbconvert-css": "^3.5.2", |
| 66 | + "@jupyterlab/nbformat": "^3.5.2", |
| 67 | + "@jupyterlab/notebook": "^3.5.2", |
| 68 | + "@jupyterlab/rendermime": "^3.5.2", |
| 69 | + "@jupyterlab/services": "^6.5.2", |
| 70 | + "@jupyterlab/coreutils": "5.5.2", |
68 | 71 | "@lumino/algorithm": "^1.3.3", |
69 | 72 | "@lumino/coreutils": "^1.5.3", |
70 | 73 | "@lumino/dragdrop": "^1.7.1", |
71 | 74 | "@lumino/messaging": "^1.4.3", |
72 | 75 | "@lumino/properties": "^1.2.3", |
73 | 76 | "@lumino/signaling": "^1.4.3", |
74 | | - "@lumino/widgets": "^1.13.2" |
| 77 | + "@lumino/widgets": "^1.36.0" |
75 | 78 | }, |
76 | 79 | "devDependencies": { |
77 | 80 | "@babel/core": "^7", |
78 | 81 | "@babel/preset-env": "^7.12.1", |
79 | 82 | "@babel/preset-react": "^7.12.5", |
80 | | - "@jupyterlab/builder": "^3.0.0-rc.13", |
81 | | - "@jupyterlab/testutils": "^3.0.10", |
| 83 | + "@jupyterlab/builder": "^3.5.2", |
| 84 | + "@jupyterlab/testutils": "^3.5.2", |
82 | 85 | "@testing-library/react": "^11.1.1", |
83 | 86 | "@types/enzyme": "^3.10.8", |
84 | 87 | "@types/enzyme-adapter-react-16": "^1.0.6", |
|
87 | 90 | "@types/react": "^16.9.56", |
88 | 91 | "@types/react-dom": "^16.9.9", |
89 | 92 | "@types/react-test-renderer": "^16.9.3", |
90 | | - "@typescript-eslint/eslint-plugin": "^2.27.0", |
91 | | - "@typescript-eslint/parser": "^2.27.0", |
| 93 | + "@typescript-eslint/eslint-plugin": "^4.8.1", |
| 94 | + "@typescript-eslint/parser": "^4.8.1", |
92 | 95 | "babel-jest": "^26.6.3", |
93 | 96 | "cypress": "^6.5.0", |
94 | 97 | "enzyme": "^3.11.0", |
95 | 98 | "enzyme-adapter-react-16": "^1.15.5", |
96 | | - "eslint": "^7.5.0", |
97 | | - "eslint-config-prettier": "^6.10.1", |
98 | | - "eslint-plugin-prettier": "^3.1.2", |
| 99 | + "eslint": "^7.14.0", |
| 100 | + "eslint-config-prettier": "^6.15.0", |
| 101 | + "eslint-plugin-prettier": "^3.1.4", |
99 | 102 | "eslint-plugin-react": "^7.20.4", |
100 | 103 | "husky": "^5.1.3", |
101 | 104 | "jest": "^26.6.3", |
|
0 commit comments