1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- {
- "name": "@jupyterlab/buildutils",
- "version": "0.3.0",
- "description": "JupyterLab - Build Utilities",
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "license": "BSD-3-Clause",
- "author": "Project Jupyter",
- "files": [
- "lib/*.d.ts",
- "lib/*.js.map",
- "lib/*.js",
- "template/package.json",
- "template/tsconfig.json",
- "template/src/index.ts"
- ],
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "directories": {
- "lib": "lib/"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "scripts": {
- "build": "tsc",
- "clean": "rimraf lib",
- "prepublishOnly": "npm run build",
- "watch": "tsc -w"
- },
- "dependencies": {
- "child_process": "~1.0.2",
- "fs-extra": "~4.0.2",
- "glob": "~7.1.2",
- "inquirer": "~3.3.0",
- "path": "~0.12.7",
- "sort-package-json": "~1.7.1",
- "typescript": "~2.6.2"
- },
- "devDependencies": {
- "@types/fs-extra": "~4.0.3",
- "@types/glob": "~5.0.33",
- "@types/inquirer": "~0.0.35",
- "@types/node": "~8.0.47",
- "rimraf": "~2.6.2"
- }
- }
|