123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475 |
- {
- "name": "@jupyterlab/buildutils",
- "version": "3.0.0-alpha.4",
- "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": {
- "ensure-max-old-space": "./lib/ensure-max-old-space.js",
- "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": {
- "@lumino/coreutils": "^1.4.3",
- "@yarnpkg/lockfile": "^1.1.0",
- "child_process": "~1.0.2",
- "commander": "~4.0.1",
- "crypto": "~1.0.1",
- "dependency-graph": "^0.8.1",
- "duplicate-package-checker-webpack-plugin": "^3.0.0",
- "fs-extra": "^8.1.0",
- "glob": "~7.1.6",
- "inquirer": "^7.0.0",
- "mini-css-extract-plugin": "~0.9.0",
- "package-json": "^6.5.0",
- "path": "~0.12.7",
- "prettier": "^1.19.1",
- "semver": "^6.3.0",
- "sort-package-json": "~1.31.0",
- "typescript": "~3.9.2",
- "webpack": "5.0.0-beta.21",
- "which": "^2.0.2"
- },
- "devDependencies": {
- "@types/fs-extra": "^8.0.1",
- "@types/glob": "^7.1.1",
- "@types/inquirer": "^6.5.0",
- "@types/node": "^12.12.17",
- "@types/prettier": "^1.19.0",
- "@types/webpack": "^4.41.0",
- "@types/which": "^1.3.2",
- "rimraf": "~3.0.0"
- },
- "publishConfig": {
- "access": "public"
- }
- }
|