12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- {
- "name": "@jupyterlab/services",
- "version": "0.51.0",
- "description": "Client APIs for the Jupyter services REST APIs",
- "keywords": [
- "jupyter",
- "notebook",
- "services"
- ],
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "files": [
- "lib/**/*.js",
- "lib/*.js.map",
- "lib/**/*.d.ts",
- "lib/**/*.js.map",
- "lib/*.js",
- "lib/*.d.ts",
- "dist/*.js",
- "dist/**/*.js"
- ],
- "main": "lib/index.js",
- "typings": "lib/index.d.ts",
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab"
- },
- "scripts": {
- "build": "jlpm run build:src",
- "build:src": "tsc --project src",
- "build:test": "tsc --project test/src",
- "clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage",
- "prepublishOnly": "jlpm run build:src && webpack",
- "test": "mocha --retries 3 test/build/**/*.spec.js test/build/*.spec.js --jupyter-config-data=./test/config.json",
- "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:debug": "mocha test/build/**/*.spec.js test/build/*.spec.js --jupyter-config-data=./test/config.json --debug-brk",
- "test:devtool": "devtool node_modules/.bin/_mocha -qc test/build/**/*.spec.js test/build/*.spec.js --jupyter-config-data=./test/config.json --timeout=50000",
- "test:integration": "cd test && python integration_test.py"
- },
- "dependencies": {
- "@jupyterlab/coreutils": "^0.12.0",
- "@phosphor/algorithm": "^1.1.2",
- "@phosphor/coreutils": "^1.3.0",
- "@phosphor/disposable": "^1.1.2",
- "@phosphor/signaling": "^1.2.2"
- },
- "devDependencies": {
- "@types/expect.js": "~0.3.29",
- "@types/mocha": "~2.2.44",
- "@types/text-encoding": "~0.0.30",
- "@types/ws": "~0.0.39",
- "expect.js": "~0.3.1",
- "istanbul": "~0.3.22",
- "mocha": "~3.5.3",
- "requirejs": "~2.3.5",
- "rimraf": "~2.6.2",
- "text-encoding": "~0.5.5",
- "typescript": "~2.4.2",
- "webpack": "~2.7.0",
- "ws": "~1.1.4",
- "xmlhttprequest": "~1.8.0"
- }
- }
|