12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "@jupyterlab/csvviewer-extension",
- "version": "0.14.1",
- "description": "JupyterLab - CSV Widget Extension",
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "directories": {
- "lib": "lib/"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "scripts": {
- "build": "tsc",
- "clean": "rimraf lib",
- "prepublishOnly": "npm run build",
- "watch": "tsc -w"
- },
- "dependencies": {
- "@jupyterlab/application": "^0.14.1",
- "@jupyterlab/apputils": "^0.14.1",
- "@jupyterlab/csvviewer": "^0.14.1"
- },
- "devDependencies": {
- "rimraf": "~2.6.2",
- "typescript": "~2.6.2"
- },
- "jupyterlab": {
- "extension": true
- }
- }
|