1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- {
- "name": "@jupyterlab/buildutils",
- "version": "1.1.0-rc.0",
- "description": "JupyterLab - Build Utilities",
- "homepage": "https://github.com/jupyterlab/jupyterlab",
- "bugs": {
- "url": "https://github.com/jupyterlab/jupyterlab/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/jupyterlab/jupyterlab.git"
- },
- "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",
- "bin": {
- "get-dependency": "./lib/get-dependency.js",
- "remove-dependency": "./lib/remove-dependency.js",
- "update-dependency": "./lib/update-dependency.js",
- "update-dist-tag": "./lib/update-dist-tag.js"
- },
- "directories": {
- "lib": "lib/"
- },
- "scripts": {
- "build": "tsc",
- "clean": "rimraf lib",
- "prepublishOnly": "npm run build",
- "watch": "tsc -w --listEmittedFiles"
- },
- "dependencies": {
- "@phosphor/coreutils": "^1.3.1",
- "@yarnpkg/lockfile": "^1.1.0",
- "child_process": "~1.0.2",
- "commander": "~2.20.0",
- "dependency-graph": "^0.8.0",
- "fs-extra": "^8.0.1",
- "glob": "~7.1.2",
- "inquirer": "^6.3.1",
- "mini-css-extract-plugin": "~0.6.0",
- "package-json": "^6.3.0",
- "path": "~0.12.7",
- "prettier": "^1.18.2",
- "semver": "^6.1.0",
- "sort-package-json": "~1.22.1",
- "typescript": "~3.5.1",
- "webpack": "^4.32.2"
- },
- "devDependencies": {
- "@types/fs-extra": "^7.0.0",
- "@types/glob": "^7.1.1",
- "@types/inquirer": "^6.0.3",
- "@types/mini-css-extract-plugin": "^0.2.0",
- "@types/node": "^12.0.2",
- "@types/prettier": "^1.16.4",
- "@types/webpack": "^4.4.32",
- "rimraf": "~2.6.2"
- }
- }
|