12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- {
- "name": "@jupyterlab/coreutils",
- "version": "4.0.0-alpha.4",
- "description": "JupyterLab - Core Utilities",
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js",
- "lib/*.json"
- ],
- "sideEffects": false,
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "tsc -b",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "docs": "typedoc src",
- "prepublishOnly": "npm run build",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@lumino/coreutils": "^1.4.0",
- "@lumino/disposable": "^1.3.2",
- "@lumino/signaling": "^1.3.2",
- "minimist": "~1.2.0",
- "moment": "^2.24.0",
- "path-posix": "~1.0.0",
- "url-parse": "~1.4.7"
- },
- "devDependencies": {
- "@types/minimist": "^1.2.0",
- "rimraf": "~3.0.0",
- "typedoc": "^0.15.4",
- "typescript": "~3.7.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "coreDependency": true
- }
- }
|