-
-
Notifications
You must be signed in to change notification settings - Fork 63
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
53a1a7b
commit 39b69ac
Showing
1 changed file
with
96 additions
and
96 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,98 +1,98 @@ | ||
{ | ||
"name": "dask-labextension", | ||
"version": "6.2.0", | ||
"description": "A JupyterLab extension for Dask.", | ||
"keywords": [ | ||
"dask", | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"homepage": "https://github.com/dask/dask-labextension", | ||
"bugs": { | ||
"url": "https://github.com/dask/dask-labextension/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/dask/dask-labextension" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": { | ||
"name": "Ian Rose, Matt Rocklin, Jacob Tomlinson" | ||
}, | ||
"files": [ | ||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", | ||
"schema/*.json", | ||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}" | ||
], | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"scripts": { | ||
"build": "jlpm run build:lib && jlpm run build:labextension:dev", | ||
"build:labextension": "jupyter labextension build .", | ||
"build:labextension:dev": "jupyter labextension build --development True .", | ||
"build:lib": "tsc", | ||
"build:prod": "jlpm run build:lib && jlpm run build:labextension", | ||
"clean": "jlpm run clean:lib", | ||
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension", | ||
"clean:labextension": "rimraf dask_labextension/labextension", | ||
"clean:lib": "rimraf lib tsconfig.tsbuildinfo", | ||
"eslint": "eslint . --ext .ts,.tsx --fix", | ||
"eslint:check": "eslint . --ext .ts,.tsx", | ||
"install:extension": "jupyter labextension develop --overwrite .", | ||
"lint": "prettier --check '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}' && jlpm eslint:check", | ||
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'", | ||
"prettier:check": "prettier --list-different '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'", | ||
"test": "mocha", | ||
"watch": "run-p watch:src watch:labextension", | ||
"watch:labextension": "jupyter labextension watch .", | ||
"watch:src": "tsc -w" | ||
}, | ||
"dependencies": { | ||
"@jupyterlab/application": "^4.0.0", | ||
"@jupyterlab/apputils": "^4.0.0", | ||
"@jupyterlab/codeeditor": "^4.0.0", | ||
"@jupyterlab/console": "^4.0.0", | ||
"@jupyterlab/coreutils": "^6.0.0", | ||
"@jupyterlab/docregistry": "^4.0.0", | ||
"@jupyterlab/mainmenu": "^4.0.0", | ||
"@jupyterlab/nbformat": "^4.0.0", | ||
"@jupyterlab/notebook": "^4.0.0", | ||
"@jupyterlab/services": "^7.0.0", | ||
"@jupyterlab/settingregistry": "^4.0.0", | ||
"@jupyterlab/statedb": "^4.0.0", | ||
"@jupyterlab/ui-components": "^4.0.0", | ||
"@lumino/algorithm": "^2.0.0", | ||
"@lumino/coreutils": "^2.0.0", | ||
"@lumino/domutils": "^2.0.0", | ||
"@lumino/dragdrop": "^2.0.0", | ||
"@lumino/messaging": "^2.0.0", | ||
"@lumino/polling": "^2.0.0", | ||
"@lumino/signaling": "^2.0.0", | ||
"@lumino/widgets": "^2.0.0", | ||
"react": "^18.0.0", | ||
"react-dom": "^18.0.0" | ||
}, | ||
"devDependencies": { | ||
"@jupyterlab/builder": "^4.0.0", | ||
"@types/react": "^18.0.0", | ||
"@types/react-dom": "^18.0.0", | ||
"@typescript-eslint/eslint-plugin": "^5.59.0", | ||
"@typescript-eslint/parser": "^5.59.0", | ||
"eslint": "^8.4.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"eslint-plugin-react": "^7.21.5", | ||
"mkdirp": "^1.0.3", | ||
"mocha": "^6.2.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^3.0.1", | ||
"rimraf": "^5.0.0", | ||
"typescript": "^5.1.3" | ||
}, | ||
"jupyterlab": { | ||
"extension": true, | ||
"schemaDir": "schema", | ||
"outputDir": "dask_labextension/labextension" | ||
} | ||
"name": "dask-labextension", | ||
"version": "7.0.0", | ||
"description": "A JupyterLab extension for Dask.", | ||
"keywords": [ | ||
"dask", | ||
"jupyter", | ||
"jupyterlab", | ||
"jupyterlab-extension" | ||
], | ||
"homepage": "https://github.com/dask/dask-labextension", | ||
"bugs": { | ||
"url": "https://github.com/dask/dask-labextension/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/dask/dask-labextension" | ||
}, | ||
"license": "BSD-3-Clause", | ||
"author": { | ||
"name": "Ian Rose, Matt Rocklin, Jacob Tomlinson" | ||
}, | ||
"files": [ | ||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}", | ||
"schema/*.json", | ||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}" | ||
], | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"scripts": { | ||
"build": "jlpm run build:lib && jlpm run build:labextension:dev", | ||
"build:labextension": "jupyter labextension build .", | ||
"build:labextension:dev": "jupyter labextension build --development True .", | ||
"build:lib": "tsc", | ||
"build:prod": "jlpm run build:lib && jlpm run build:labextension", | ||
"clean": "jlpm run clean:lib", | ||
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension", | ||
"clean:labextension": "rimraf dask_labextension/labextension", | ||
"clean:lib": "rimraf lib tsconfig.tsbuildinfo", | ||
"eslint": "eslint . --ext .ts,.tsx --fix", | ||
"eslint:check": "eslint . --ext .ts,.tsx", | ||
"install:extension": "jupyter labextension develop --overwrite .", | ||
"lint": "prettier --check '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}' && jlpm eslint:check", | ||
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'", | ||
"prettier:check": "prettier --list-different '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'", | ||
"test": "mocha", | ||
"watch": "run-p watch:src watch:labextension", | ||
"watch:labextension": "jupyter labextension watch .", | ||
"watch:src": "tsc -w" | ||
}, | ||
"dependencies": { | ||
"@jupyterlab/application": "^4.0.0", | ||
"@jupyterlab/apputils": "^4.0.0", | ||
"@jupyterlab/codeeditor": "^4.0.0", | ||
"@jupyterlab/console": "^4.0.0", | ||
"@jupyterlab/coreutils": "^6.0.0", | ||
"@jupyterlab/docregistry": "^4.0.0", | ||
"@jupyterlab/mainmenu": "^4.0.0", | ||
"@jupyterlab/nbformat": "^4.0.0", | ||
"@jupyterlab/notebook": "^4.0.0", | ||
"@jupyterlab/services": "^7.0.0", | ||
"@jupyterlab/settingregistry": "^4.0.0", | ||
"@jupyterlab/statedb": "^4.0.0", | ||
"@jupyterlab/ui-components": "^4.0.0", | ||
"@lumino/algorithm": "^2.0.0", | ||
"@lumino/coreutils": "^2.0.0", | ||
"@lumino/domutils": "^2.0.0", | ||
"@lumino/dragdrop": "^2.0.0", | ||
"@lumino/messaging": "^2.0.0", | ||
"@lumino/polling": "^2.0.0", | ||
"@lumino/signaling": "^2.0.0", | ||
"@lumino/widgets": "^2.0.0", | ||
"react": "^18.0.0", | ||
"react-dom": "^18.0.0" | ||
}, | ||
"devDependencies": { | ||
"@jupyterlab/builder": "^4.0.0", | ||
"@types/react": "^18.0.0", | ||
"@types/react-dom": "^18.0.0", | ||
"@typescript-eslint/eslint-plugin": "^5.59.0", | ||
"@typescript-eslint/parser": "^5.59.0", | ||
"eslint": "^8.4.0", | ||
"eslint-config-prettier": "^8.8.0", | ||
"eslint-plugin-prettier": "^4.2.1", | ||
"eslint-plugin-react": "^7.21.5", | ||
"mkdirp": "^1.0.3", | ||
"mocha": "^6.2.0", | ||
"npm-run-all": "^4.1.5", | ||
"prettier": "^3.0.1", | ||
"rimraf": "^5.0.0", | ||
"typescript": "^5.1.3" | ||
}, | ||
"jupyterlab": { | ||
"extension": true, | ||
"schemaDir": "schema", | ||
"outputDir": "dask_labextension/labextension" | ||
} | ||
} |