UNPKG

reload

Version:

Node.js module to refresh and reload your code in your browser when your code changes. No browser plugins required.

56 lines (55 loc) 1.43 kB
{ "name": "reload", "version": "3.3.0", "files": [ "bin", "lib", "index.js" ], "description": "Node.js module to refresh and reload your code in your browser when your code changes. No browser plugins required.", "repository": { "type": "git", "url": "git@github.com:alallier/reload.git" }, "keywords": [ "reload", "refresh", "http", "express", "development" ], "author": "JP Richardson <jprichardson@gmail.com>", "contributors": [ "Alexander J. Lallier <alexanderlallier@gmail.com>" ], "license": "MIT", "dependencies": { "cli-color": "~2.0.0", "commander": "~12.1.0", "finalhandler": "~1.2.0", "minimist": "~1.2.0", "nodemon": "~3.1.4", "open": "^8.0.0", "serve-static": "~1.15.0", "ws": "~8.18.0" }, "devDependencies": { "sinon": "18.0.0", "standard": "17.1.0", "express": "4.19.2", "mocha": "10.7.3", "nyc": "17.0.0" }, "main": "./index.js", "scripts": { "test": "npm run standard && npm run unitTests", "unitTests": "mocha --recursive --timeout 5000 test", "standard": "standard \"**/*.js\" \"bin/**/*\"", "cover": "nyc --reporter=html --reporter=text mocha --timeout 5000 --recursive test", "coverage": "npm run cover", "make-coverage": "nyc npm run unitTests && nyc report --reporter=text-lcov > coverage.lcov" }, "bin": { "reload": "./bin/reload" } }