12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "name": "@jupyterlab/coreutils",
- "version": "0.13.0",
- "description": "JupyterLab - Core Utilities",
- "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": {
- "@phosphor/algorithm": "^1.1.2",
- "@phosphor/coreutils": "^1.3.0",
- "@phosphor/disposable": "^1.1.2",
- "@phosphor/signaling": "^1.2.2",
- "ajv": "~5.1.6",
- "comment-json": "^1.1.3",
- "minimist": "~1.2.0",
- "moment": "~2.17.1",
- "path-posix": "~1.0.0",
- "url-parse": "~1.1.9"
- },
- "devDependencies": {
- "@types/comment-json": "^1.1.0",
- "@types/minimist": "~1.2.0",
- "rimraf": "~2.6.2",
- "typescript": "~2.6.2"
- }
- }
|