123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {
- "name": "@jupyterlab/services",
- "version": "0.43.0",
- "description": "Client APIs for the Jupyter services REST APIs",
- "main": "lib/index.js",
- "typings": "lib/index.d.ts",
- "dependencies": {
- "@jupyterlab/coreutils": "^0.4.0",
- "@phosphor/algorithm": "^1.0.0",
- "@phosphor/coreutils": "^1.0.0",
- "@phosphor/disposable": "^1.0.0",
- "@phosphor/signaling": "^1.0.0",
- "@types/minimist": "^1.2.0",
- "@types/text-encoding": "0.0.30",
- "minimist": "^1.2.0",
- "path-posix": "^1.0.0",
- "url-parse": "^1.1.8"
- },
- "devDependencies": {
- "@types/expect.js": "^0.3.29",
- "@types/mocha": "^2.2.32",
- "@types/ws": "0.0.39",
- "expect.js": "^0.3.1",
- "istanbul": "^0.3.18",
- "mocha": "^3.2.0",
- "requirejs": "^2.2.0",
- "rimraf": "^2.5.2",
- "text-encoding": "^0.5.2",
- "typedoc": "^0.5.0",
- "typescript": "^2.2.1",
- "webpack": "^2.2.1",
- "ws": "^1.1.1",
- "xmlhttprequest": "^1.8.0"
- },
- "scripts": {
- "clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage",
- "build:src": "tsc --project src",
- "build:test": "tsc --project test/src",
- "build": "npm run build:src",
- "example:browser": "cd examples/browser && npm run update && npm run build",
- "example:node": "cd examples/node && npm install",
- "build:examples": "npm run example:browser && npm run example:node",
- "test:coverage": "istanbul cover --dir test/coverage _mocha -- --retries 3 test/build/**/*.spec.js test/build/*.spec.js --jupyter-config-data=./test/config.json",
- "test:integration": "cd test && python integration_test.py",
- "test:devtool": "devtool node_modules/.bin/_mocha -qc test/build/**/*.spec.js test/build*.spec.js --jupyter-config-data=./test/config.json",
- "test:debug": "mocha test/build/**/*.spec.js test/build*.spec.js --jupyter-config-data=./test/config.json --debug-brk",
- "test": "mocha --retries 3 test/build/**/*.spec.js test/build*.spec.js --jupyter-config-data=./test/config.json"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab"
- },
- "keywords": [
- "jupyter",
- "services",
- "notebook"
- ],
- "files": [
- "lib/**/*.js",
- "lib/**/*.d.ts",
- "lib/*.js",
- "lib/*.d.ts",
- "dist/*.js",
- "dist/**/*.js"
- ],
- "author": "Project Jupyter",
- "license": "BSD-3-Clause",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "homepage": "https://github.com/jupyterlab/jupyterlab"
- }
|