mirror of
https://github.com/aykhans/AzSuicideDataVisualization.git
synced 2025-07-04 15:17:14 +00:00
first commit
This commit is contained in:
@ -0,0 +1,5 @@
|
||||
{
|
||||
"packageManager": "python",
|
||||
"packageName": "jupyterlab_widgets",
|
||||
"uninstallInstructions": "Use your Python package manager (pip, conda, etc.) to uninstall the package jupyterlab_widgets"
|
||||
}
|
@ -0,0 +1,99 @@
|
||||
{
|
||||
"name": "@jupyter-widgets/jupyterlab-manager",
|
||||
"version": "3.1.0",
|
||||
"description": "The JupyterLab extension providing Jupyter widgets.",
|
||||
"keywords": [
|
||||
"jupyter",
|
||||
"jupyterlab",
|
||||
"jupyterlab notebook",
|
||||
"jupyterlab-extension"
|
||||
],
|
||||
"homepage": "https://github.com/jupyter-widgets/ipywidgets",
|
||||
"bugs": {
|
||||
"url": "https://github.com/jupyter-widgets/ipywidgets/issues"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jupyter-widgets/ipywidgets"
|
||||
},
|
||||
"license": "BSD-3-Clause",
|
||||
"author": "Project Jupyter",
|
||||
"sideEffects": [
|
||||
"style/*.css"
|
||||
],
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"files": [
|
||||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
||||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
||||
"dist/*.js",
|
||||
"schema/*.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
|
||||
"build:prod": "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 jupyterlab_widgets/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 .",
|
||||
"prepare": "jlpm run clean && jlpm run build:prod",
|
||||
"watch": "run-p watch:src watch:labextension",
|
||||
"watch:labextension": "jupyter labextension watch .",
|
||||
"watch:src": "tsc -w"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyter-widgets/base": "^4.1.0",
|
||||
"@jupyter-widgets/controls": "^3.1.0",
|
||||
"@jupyter-widgets/output": "^4.1.0",
|
||||
"@jupyterlab/application": "^3.0.0",
|
||||
"@jupyterlab/docregistry": "^3.0.0",
|
||||
"@jupyterlab/logconsole": "^3.0.0",
|
||||
"@jupyterlab/mainmenu": "^3.0.0",
|
||||
"@jupyterlab/nbformat": "^3.0.0",
|
||||
"@jupyterlab/notebook": "^3.0.0",
|
||||
"@jupyterlab/outputarea": "^3.0.0",
|
||||
"@jupyterlab/rendermime": "^3.0.0",
|
||||
"@jupyterlab/rendermime-interfaces": "^3.0.0",
|
||||
"@jupyterlab/services": "^6.0.0",
|
||||
"@jupyterlab/settingregistry": "^3.0.0",
|
||||
"@lumino/algorithm": "^1.1.0",
|
||||
"@lumino/coreutils": "^1.3.0",
|
||||
"@lumino/disposable": "^1.1.1",
|
||||
"@lumino/messaging": "^1.2.1",
|
||||
"@lumino/properties": "^1.1.0",
|
||||
"@lumino/signaling": "^1.2.0",
|
||||
"@lumino/widgets": "^1.3.0",
|
||||
"@types/backbone": "^1.4.1",
|
||||
"jquery": "^3.1.1",
|
||||
"semver": "^6.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jupyterlab/builder": "^3.0.0",
|
||||
"@jupyterlab/cells": "^3.0.0",
|
||||
"@types/semver": "^6.0.1",
|
||||
"@typescript-eslint/eslint-plugin": "^2.27.0",
|
||||
"@typescript-eslint/parser": "^2.27.0",
|
||||
"eslint": "^7.5.0",
|
||||
"eslint-config-prettier": "^6.10.1",
|
||||
"eslint-plugin-prettier": "^3.1.2",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^1.19.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"typescript": "~3.9.0"
|
||||
},
|
||||
"jupyterlab": {
|
||||
"extension": true,
|
||||
"outputDir": "jupyterlab_widgets/labextension",
|
||||
"schemaDir": "./schema",
|
||||
"_build": {
|
||||
"load": "static/remoteEntry.3421943a0ce73f10909d.js",
|
||||
"extension": "./extension"
|
||||
}
|
||||
}
|
||||
}
|
@ -0,0 +1,95 @@
|
||||
{
|
||||
"name": "@jupyter-widgets/jupyterlab-manager",
|
||||
"version": "3.1.0",
|
||||
"description": "The JupyterLab extension providing Jupyter widgets.",
|
||||
"keywords": [
|
||||
"jupyter",
|
||||
"jupyterlab",
|
||||
"jupyterlab notebook",
|
||||
"jupyterlab-extension"
|
||||
],
|
||||
"homepage": "https://github.com/jupyter-widgets/ipywidgets",
|
||||
"bugs": {
|
||||
"url": "https://github.com/jupyter-widgets/ipywidgets/issues"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/jupyter-widgets/ipywidgets"
|
||||
},
|
||||
"license": "BSD-3-Clause",
|
||||
"author": "Project Jupyter",
|
||||
"sideEffects": [
|
||||
"style/*.css"
|
||||
],
|
||||
"main": "lib/index.js",
|
||||
"types": "lib/index.d.ts",
|
||||
"files": [
|
||||
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
|
||||
"style/**/*.{css,eot,gif,html,jpg,json,png,svg,woff2,ttf}",
|
||||
"dist/*.js",
|
||||
"schema/*.json"
|
||||
],
|
||||
"scripts": {
|
||||
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
|
||||
"build:prod": "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 jupyterlab_widgets/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 .",
|
||||
"prepare": "jlpm run clean && jlpm run build:prod",
|
||||
"watch": "run-p watch:src watch:labextension",
|
||||
"watch:labextension": "jupyter labextension watch .",
|
||||
"watch:src": "tsc -w"
|
||||
},
|
||||
"dependencies": {
|
||||
"@jupyter-widgets/base": "^4.1.0",
|
||||
"@jupyter-widgets/controls": "^3.1.0",
|
||||
"@jupyter-widgets/output": "^4.1.0",
|
||||
"@jupyterlab/application": "^3.0.0",
|
||||
"@jupyterlab/docregistry": "^3.0.0",
|
||||
"@jupyterlab/logconsole": "^3.0.0",
|
||||
"@jupyterlab/mainmenu": "^3.0.0",
|
||||
"@jupyterlab/nbformat": "^3.0.0",
|
||||
"@jupyterlab/notebook": "^3.0.0",
|
||||
"@jupyterlab/outputarea": "^3.0.0",
|
||||
"@jupyterlab/rendermime": "^3.0.0",
|
||||
"@jupyterlab/rendermime-interfaces": "^3.0.0",
|
||||
"@jupyterlab/services": "^6.0.0",
|
||||
"@jupyterlab/settingregistry": "^3.0.0",
|
||||
"@lumino/algorithm": "^1.1.0",
|
||||
"@lumino/coreutils": "^1.3.0",
|
||||
"@lumino/disposable": "^1.1.1",
|
||||
"@lumino/messaging": "^1.2.1",
|
||||
"@lumino/properties": "^1.1.0",
|
||||
"@lumino/signaling": "^1.2.0",
|
||||
"@lumino/widgets": "^1.3.0",
|
||||
"@types/backbone": "^1.4.1",
|
||||
"jquery": "^3.1.1",
|
||||
"semver": "^6.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@jupyterlab/builder": "^3.0.0",
|
||||
"@jupyterlab/cells": "^3.0.0",
|
||||
"@types/semver": "^6.0.1",
|
||||
"@typescript-eslint/eslint-plugin": "^2.27.0",
|
||||
"@typescript-eslint/parser": "^2.27.0",
|
||||
"eslint": "^7.5.0",
|
||||
"eslint-config-prettier": "^6.10.1",
|
||||
"eslint-plugin-prettier": "^3.1.2",
|
||||
"npm-run-all": "^4.1.5",
|
||||
"prettier": "^1.19.0",
|
||||
"rimraf": "^3.0.2",
|
||||
"typescript": "~3.9.0"
|
||||
},
|
||||
"jupyterlab": {
|
||||
"extension": true,
|
||||
"outputDir": "jupyterlab_widgets/labextension",
|
||||
"schemaDir": "./schema"
|
||||
}
|
||||
}
|
@ -0,0 +1,14 @@
|
||||
{
|
||||
"title": "Jupyter Widgets",
|
||||
"description": "Jupyter widgets settings.",
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"saveState": {
|
||||
"type": "boolean",
|
||||
"title": "Save Jupyter widget state in notebooks",
|
||||
"description": "Automatically save Jupyter widget state when a notebook is saved.",
|
||||
"default": false
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
}
|
@ -0,0 +1 @@
|
||||
(self.webpackChunk_jupyter_widgets_jupyterlab_manager=self.webpackChunk_jupyter_widgets_jupyterlab_manager||[]).push([[1],{8001:(e,a,r)=>{"use strict";r.d(a,{N:()=>t});var t="1.5.0"}}]);
|
@ -0,0 +1 @@
|
||||
(self.webpackChunk_jupyter_widgets_jupyterlab_manager=self.webpackChunk_jupyter_widgets_jupyterlab_manager||[]).push([[18,86],{6086:(t,e,n)=>{"use strict";n.r(e),n.d(e,{OUTPUT_WIDGET_VERSION:()=>p,OutputModel:()=>_,OutputView:()=>l});var r,o=n(5025),u=(r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),i=function(){return(i=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var o in e=arguments[n])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)},p="1.0.0",_=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return u(e,t),e.prototype.defaults=function(){return i(i({},t.prototype.defaults.call(this)),{_model_name:"OutputModel",_view_name:"OutputView",_model_module:"@jupyter-widgets/output",_view_module:"@jupyter-widgets/output",_model_module_version:p,_view_module_version:p})},e}(o.DOMWidgetModel),l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return u(e,t),e}(o.DOMWidgetView)}}]);
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,24 @@
|
||||
/*!
|
||||
* Sizzle CSS Selector Engine v2.3.4
|
||||
* https://sizzlejs.com/
|
||||
*
|
||||
* Copyright JS Foundation and other contributors
|
||||
* Released under the MIT license
|
||||
* https://js.foundation/
|
||||
*
|
||||
* Date: 2019-04-08
|
||||
*/
|
||||
|
||||
/*!
|
||||
* jQuery JavaScript Library v3.4.1
|
||||
* https://jquery.com/
|
||||
*
|
||||
* Includes Sizzle.js
|
||||
* https://sizzlejs.com/
|
||||
*
|
||||
* Copyright JS Foundation and other contributors
|
||||
* Released under the MIT license
|
||||
* https://jquery.org/license
|
||||
*
|
||||
* Date: 2019-05-01T21:04Z
|
||||
*/
|
File diff suppressed because one or more lines are too long
@ -0,0 +1 @@
|
||||
(self.webpackChunk_jupyter_widgets_jupyterlab_manager=self.webpackChunk_jupyter_widgets_jupyterlab_manager||[]).push([[86,18],{6086:(t,e,n)=>{"use strict";n.r(e),n.d(e,{OUTPUT_WIDGET_VERSION:()=>p,OutputModel:()=>_,OutputView:()=>l});var r,o=n(5025),u=(r=function(t,e){return(r=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n])})(t,e)},function(t,e){function n(){this.constructor=t}r(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),i=function(){return(i=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var o in e=arguments[n])Object.prototype.hasOwnProperty.call(e,o)&&(t[o]=e[o]);return t}).apply(this,arguments)},p="1.0.0",_=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return u(e,t),e.prototype.defaults=function(){return i(i({},t.prototype.defaults.call(this)),{_model_name:"OutputModel",_view_name:"OutputView",_model_module:"@jupyter-widgets/output",_view_module:"@jupyter-widgets/output",_model_module_version:p,_view_module_version:p})},e}(o.DOMWidgetModel),l=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return u(e,t),e}(o.DOMWidgetView)}}]);
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,35 @@
|
||||
/*!
|
||||
* jQuery UI Keycode 1.12.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
/*!
|
||||
* jQuery UI Mouse 1.12.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
/*!
|
||||
* jQuery UI Slider 1.12.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
||||
|
||||
/*!
|
||||
* jQuery UI Widget 1.12.1
|
||||
* http://jqueryui.com
|
||||
*
|
||||
* Copyright jQuery Foundation and other contributors
|
||||
* Released under the MIT license.
|
||||
* http://jquery.org/license
|
||||
*/
|
File diff suppressed because one or more lines are too long
@ -0,0 +1,4 @@
|
||||
/* This is a generated file of CSS imports */
|
||||
/* It was generated by @jupyterlab/builder in Build.ensureAssets() */
|
||||
|
||||
|
Reference in New Issue
Block a user