1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- {
- "name": "@jupyterlab/services",
- "version": "1.0.1",
- "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 ",
- "build:test": "tsc --project test",
- "clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage",
- "prepublishOnly": "jlpm run build:src && webpack",
- "test": "python test/run-test.py",
- "test:coverage": "python test/run_test.py --TestApp.coverage==True",
- "test:debug": "python test/run_test.py --debug",
- "test:devtool": "python test/run_test.py --TestApp.devtool==True",
- "watch": "tsc -w",
- "watch:all": "npm-run-all -p watch watch:test",
- "watch:test": "tsc -w --project test"
- },
- "dependencies": {
- "@jupyterlab/coreutils": "^1.0.1",
- "@jupyterlab/observables": "^1.0.1",
- "@phosphor/algorithm": "^1.1.2",
- "@phosphor/coreutils": "^1.3.0",
- "@phosphor/disposable": "^1.1.2",
- "@phosphor/signaling": "^1.2.2",
- "node-fetch": "~1.7.3",
- "ws": "~1.1.4"
- },
- "devDependencies": {
- "@types/expect.js": "~0.3.29",
- "@types/mocha": "~2.2.44",
- "@types/node-fetch": "~1.6.7",
- "@types/text-encoding": "~0.0.30",
- "@types/ws": "~0.0.39",
- "expect.js": "~0.3.1",
- "istanbul": "~0.3.22",
- "mocha": "~3.5.3",
- "npm-run-all": "~4.1.1",
- "rimraf": "~2.6.2",
- "text-encoding": "~0.5.5",
- "typescript": "~2.6.2",
- "webpack": "~2.7.0"
- }
- }
|