@chameleoncloud/jupyterlab_zenodo
Version:
JupyterLab extension for uploading to Zenodo
94 lines (93 loc) • 2.38 kB
JSON
{
"name": "@chameleoncloud/jupyterlab_zenodo",
"version": "2.0.0",
"description": "JupyterLab extension for uploading to Zenodo",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"zenodo"
],
"homepage": "https://github.com/ChameleonCloud/jupyterlab-zenodo",
"bugs": {
"url": "https://github.com/ChameleonCloud/jupyterlab-zenodo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ChameleonCloud/jupyterlab-zenodo.git"
},
"license": "MIT",
"author": "Maxine King <maxineking@uchicago.edu>",
"contributors": [
"Jason Anderson <jasonanderson@uchicago.edu>"
],
"files": [
"lib/*/*d.ts",
"lib/*/*.js",
"lib/*.d.ts",
"lib/*.js",
"style/**/*.*",
"schema/*.json"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"directories": {
"lib": "lib/"
},
"scripts": {
"build": "tsc",
"clean": "rimraf lib",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"test": "make tests",
"watch": "tsc -w"
},
"lint-staged": {
"**/*{.ts,.tsx,.css,.json,.md}": [
"prettier --write",
"git add"
]
},
"dependencies": {
"@jupyterlab/application": "^2.0.0",
"@jupyterlab/apputils": "^2.0.0",
"@jupyterlab/coreutils": "^4.0.0",
"@jupyterlab/filebrowser": "^2.0.0",
"@jupyterlab/fileeditor": "^2.0.0",
"@jupyterlab/mainmenu": "^2.0.0",
"@jupyterlab/services": "^5.0.0",
"@jupyterlab/settingregistry": "^2.0.0",
"@jupyterlab/statedb": "^2.0.0",
"@jupyterlab/ui-components": "^2.0.0",
"@lumino/coreutils": "^1.4.2",
"@lumino/widgets": "^1.11.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"@types/react": "~16.9.16",
"@types/react-dom": "~16.9.4",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.19.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"rimraf": "~3.0.0",
"typescript": "~3.7.2"
},
"jupyterlab": {
"extension": true,
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "jupyterlab_zenodo"
}
}
},
"schemaDir": "schema"
}
}