1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- {
- "name": "jupyter-js-notebook",
- "version": "0.16.0",
- "description": "Notebook widget for JupyterLab",
- "main": "lib/index.js",
- "typings": "lib/index.d.ts",
- "dependencies": {
- "codemirror": "^5.11.0",
- "diff-match-patch": "^1.0.0",
- "file-loader": "^0.8.5",
- "jupyter-js-services": "^0.7.1",
- "jupyter-js-ui": "^0.5.1",
- "jupyter-js-utils": "^0.3.4",
- "marked": "^0.3.5",
- "phosphor-disposable": "^1.0.5",
- "phosphor-observablelist": "^1.0.0-beta",
- "phosphor-panel": "^1.0.0-rc.1",
- "phosphor-properties": "^2.0.0",
- "phosphor-signaling": "^1.2.0",
- "phosphor-widget": "^1.0.0-rc.1",
- "sanitizer": "^0.1.3"
- },
- "devDependencies": {
- "css-loader": "^0.23.1",
- "expect.js": "^0.3.1",
- "fs-extra": "^0.26.3",
- "istanbul-instrumenter-loader": "^0.1.3",
- "json-loader": "^0.5.4",
- "karma": "^0.13.9",
- "karma-chrome-launcher": "^0.2.0",
- "karma-coverage": "^0.5.3",
- "karma-firefox-launcher": "^0.1.6",
- "karma-ie-launcher": "^0.2.0",
- "karma-mocha": "^0.2.0",
- "karma-mocha-reporter": "^1.1.1",
- "mocha": "^2.2.5",
- "rimraf": "^2.4.2",
- "style-loader": "^0.13.0",
- "tsconfig-cli": "^0.1.1",
- "typedoc": "^0.3.11",
- "typescript": "^1.8.0",
- "watch": "^0.17.1",
- "webpack": "^1.12.9"
- },
- "scripts": {
- "clean": "rimraf docs && rimraf lib && rimraf test/build",
- "clean:example": "rimraf example/build",
- "build:example": "cd example && npm run update && npm run build",
- "build:src": "tsc --project src && node scripts/copycss.js",
- "build:test": "tsconfig -u test/src/tsconfig.json && tsc --project test/src && webpack --config test/webpack.conf.js",
- "build": "npm run build:src && npm run build:test",
- "docs": "typedoc --options scripts/tdoptions.json",
- "postinstall": "npm dedupe",
- "prepublish": "npm run build",
- "test:chrome": "karma start --browsers=Chrome test/karma.conf.js",
- "test:coverage": "webpack --config test/webpack-cov.conf.js && karma start test/karma-cov.conf.js",
- "test:firefox": "karma start --browsers=Firefox test/karma.conf.js",
- "test:ie": "karma start --browsers=IE test/karma.conf.js",
- "test:debug": "karma start --browsers=Chrome --singleRun=false --debug=true test/karma.conf.js",
- "test": "npm run test:firefox",
- "watch:example": "watch 'npm run build && npm run build:example' src --wait 10",
- "watch": "watch 'npm run build' src"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyter/jupyter-js-notebook"
- },
- "keywords": [
- "jupyter",
- "notebook"
- ],
- "files": [
- "lib/*.js",
- "lib/*.d.ts",
- "lib/*.css",
- "lib/**/*.css",
- "lib/**/*.d.ts",
- "lib/**/*.js"
- ],
- "author": "Project Jupyter",
- "license": "BSD-3-Clause",
- "bugs": {
- "url": "https://github.com/jupyter/jupyter-js-notebook/issues"
- },
- "homepage": "https://github.com/jupyter/jupyter-js-notebook"
- }
|