123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- {
- "name": "jupyter-js-ui",
- "version": "0.0.1",
- "description": "JavaScript UI Components for Jupyter",
- "main": "lib/index.js",
- "typings": "lib/index.d.ts",
- "dependencies": {
- "jupyter-js-services": "^0.5.4",
- "jupyter-js-utils": "^0.3.3",
- "moment": "^2.11.2",
- "phosphor-arrays": "^1.0.6",
- "phosphor-codemirror": "0.0.1",
- "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",
- "term.js": "0.0.7"
- },
- "devDependencies": {
- "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 lib",
- "clean:examples": "node scripts/cleanexamples.js",
- "build:example": "cd examples/$EXAMPLE && npm run update && npm run build",
- "build:examples": "node scripts/buildexamples.js",
- "build": "tsc --project src && node scripts/copycss.js",
- "postinstall": "npm dedupe",
- "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-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"
- }
|