1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- {
- "name": "jupyter-js-ui",
- "version": "0.10.1",
- "description": "JavaScript UI Components for Jupyter",
- "main": "lib/index.js",
- "typings": "lib/index.d.ts",
- "dependencies": {
- "ansi_up": "^1.3.0",
- "backbone": "^1.2.0",
- "codemirror": "^5.12.0",
- "jupyter-js-services": "^0.8.0",
- "jupyter-js-utils": "^0.4.0",
- "jupyter-js-widgets": "0.0.17",
- "marked": "^0.3.5",
- "moment": "^2.11.2",
- "phosphor-arrays": "^1.0.6",
- "phosphor-domutil": "^1.2.0",
- "phosphor-dragdrop": "^0.9.0",
- "phosphor-menus": "^1.0.0-rc.1",
- "phosphor-messaging": "^1.0.6",
- "phosphor-panel": "^1.0.0-rc.1",
- "phosphor-properties": "^2.0.0",
- "phosphor-widget": "^1.0.0-rc.1",
- "xterm": "^0.33.0"
- },
- "devDependencies": {
- "concurrently": "^2.0.0",
- "css-loader": "^0.23.1",
- "expect.js": "^0.3.1",
- "file-loader": "^0.8.5",
- "fs-extra": "^0.26.4",
- "istanbul-instrumenter-loader": "^0.1.3",
- "json-loader": "^0.5.4",
- "karma": "^0.13.19",
- "karma-chrome-launcher": "^0.2.2",
- "karma-coverage": "^0.5.3",
- "karma-firefox-launcher": "^0.1.7",
- "karma-ie-launcher": "^0.2.0",
- "karma-mocha": "^0.2.1",
- "karma-mocha-reporter": "^1.1.5",
- "mocha": "^2.3.4",
- "rimraf": "^2.5.0",
- "style-loader": "^0.13.0",
- "typedoc": "^0.3.12",
- "typescript": "^1.7.5",
- "url-loader": "^0.5.7",
- "watch": "^0.17.1",
- "webpack": "^1.12.11"
- },
- "scripts": {
- "clean": "rimraf docs && rimraf lib && rimraf test/build",
- "clean:examples": "node scripts/cleanexamples.js",
- "build:examples": "node scripts/buildexamples.js",
- "build:src": "tsc --project src && node scripts/copycss.js",
- "build:test": "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",
- "prepublish": "npm run build",
- "postinstall": "npm dedupe",
- "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:examples": "watch 'npm run build && npm run build:examples' src --wait 10",
- "watch": "watch 'npm run build' src"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyter/jupyter-js-ui"
- },
- "keywords": [
- "jupyter",
- "filebrowser",
- "terminal"
- ],
- "files": [
- "lib/*.css",
- "lib/*.d.ts",
- "lib/*.js",
- "lib/**/*.css",
- "lib/**/*.d.ts",
- "lib/**/*.js"
- ],
- "author": "Project Jupyter",
- "license": "BSD-3-Clause",
- "bugs": {
- "url": "https://github.com/jupyter/jupyter-js-ui/issues"
- },
- "homepage": "https://github.com/jupyter/jupyter-js-ui"
- }
|