UNPKG

node-dev

Version:

Restarts your app when files are modified

62 lines (61 loc) 1.47 kB
{ "name": "node-dev", "version": "8.0.0", "description": "Restarts your app when files are modified", "keywords": [ "restart", "reload", "supervisor", "monitor", "watch" ], "author": "Felix Gnass <fgnass@gmail.com> (https://github.com/fgnass)", "contributors": [ "Daniel Gasienica <daniel@gasienica.ch> (https://github.com/gasi)", "Bjorn Stromberg <bjorn@bjornstar.com> (https://bjornstar.com)" ], "repository": { "type": "git", "url": "http://github.com/fgnass/node-dev.git" }, "license": "MIT", "bin": { "node-dev": "bin/node-dev" }, "main": "./lib", "engines": { "node": ">=14" }, "scripts": { "lint": "eslint lib test bin/node-dev", "test": "node test", "prepare": "husky install" }, "dependencies": { "dateformat": "^3.0.3", "dynamic-dedupe": "^0.3.0", "filewatcher": "~3.0.0", "get-package-type": "^0.1.0", "minimist": "^1.2.6", "node-notifier": "^8.0.1", "resolve": "^1.22.0", "semver": "^7.3.7" }, "devDependencies": { "@types/node": "^18.11.18", "eslint": "^8.30.0", "eslint-plugin-import": "^2.26.0", "husky": "^8.0.2", "lint-staged": "^13.1.0", "prettier": "^2.6.2", "tap": "^16.3.2", "tap-xunit": "^2.4.1", "touch": "^3.1.0", "ts-node": "^10.7.0", "typescript": "^4.6.3" }, "lint-staged": { "*.{js,mjs}": "eslint --cache --fix", "*.{js,md}": "prettier --write" } }