UNPKG

dev-server-ports

Version:

Gracefully pick a port number for the dev server

75 lines (74 loc) 2.21 kB
{ "name": "dev-server-ports", "description": "Gracefully pick a port number for the dev server", "version": "2.0.0", "license": "MIT", "author": "Brion Mario", "keywords": [ "dev-server-ports", "dynamic-port", "webpack-dynamic-port", "port-finder" ], "homepage": "https://github.com/brionmario/dev-server-ports#readme", "repository": { "type": "git", "url": "https://github.com/brionmario/dev-server-ports" }, "bugs": { "url": "https://github.com/brionmario/dev-server-ports/issues" }, "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "scripts": { "build": "tsdx build", "contributors:add": "all-contributors add", "contributors:generate": "all-contributors generate", "cm": "cz", "lint": "eslint --ext .js,.ts .", "prepare": "tsdx build", "semantic-release": "semantic-release", "start": "tsdx watch", "test": "tsdx test", "typecheck": "tsc" }, "husky": { "hooks": { "pre-commit": "npm run lint", "prepare-commit-msg": "exec < /dev/tty && npx cz --hook || true" } }, "module": "dist/dev-server-ports.esm.js", "devDependencies": { "@semantic-release/changelog": "^6.0.1", "@semantic-release/git": "^10.0.1", "@types/detect-port": "^1.3.2", "@types/inquirer": "^8.2.0", "@typescript-eslint/eslint-plugin": "^5.16.0", "@typescript-eslint/parser": "^5.16.0", "all-contributors-cli": "^6.20.0", "commitizen": "^4.2.4", "cz-conventional-changelog": "^3.3.0", "eslint": "^8.12.0", "eslint-plugin-import": "^2.25.4", "eslint-plugin-tsdoc": "^0.2.14", "husky": "^7.0.4", "semantic-release": "^19.0.2", "tsdx": "^0.14.1", "tslib": "^2.3.1", "typescript": "^4.6.3" }, "dependencies": { "chalk": "^4.1.2", "detect-port": "^1.3.0", "inquirer": "^8.2.2", "is-root": "^2.1.0" } }