12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "name": "@jupyterlab/coreutils",
- "version": "5.4.3",
- "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",
- "sideEffects": false,
- "main": "lib/index.js",
- "browser": {
- "path": "path-browserify"
- },
- "types": "lib/index.d.ts",
- "directories": {
- "lib": "lib/"
- },
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js",
- "lib/*.json"
- ],
- "scripts": {
- "build": "tsc -b",
- "build:test": "tsc --build tsconfig.test.json",
- "clean": "rimraf lib && rimraf tsconfig.tsbuildinfo",
- "docs": "typedoc src",
- "test": "jest",
- "test:cov": "jest --collect-coverage",
- "test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
- "test:debug:watch": "node --inspect-brk node_modules/.bin/jest --runInBand --watch",
- "watch": "tsc -b --watch"
- },
- "dependencies": {
- "@lumino/coreutils": "^1.11.0",
- "@lumino/disposable": "^1.10.0",
- "@lumino/signaling": "^1.10.0",
- "minimist": "~1.2.0",
- "moment": "^2.29.4",
- "path-browserify": "^1.0.0",
- "url-parse": "~1.5.1"
- },
- "devDependencies": {
- "@jupyterlab/testutils": "^3.4.3",
- "@types/jest": "^26.0.10",
- "@types/minimist": "^1.2.0",
- "@types/url-parse": "^1.4.3",
- "jest": "^26.4.2",
- "rimraf": "~3.0.0",
- "ts-jest": "^26.3.0",
- "typedoc": "~0.21.2",
- "typescript": "~4.1.3"
- },
- "publishConfig": {
- "access": "public"
- },
- "jupyterlab": {
- "coreDependency": true
- }
- }
|