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
JSON
{
"name": "reload",
"version": "3.4.2",
"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+ssh://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": "~14.0.0",
"finalhandler": "~2.1.0",
"minimist": "~1.2.0",
"nodemon": "~3.1.4",
"open": "^10.0.0",
"serve-static": "~2.2.0",
"ws": "~8.18.0"
},
"devDependencies": {
"sinon": "21.0.0",
"standard": "17.1.2",
"express": "5.1.0",
"mocha": "11.7.1",
"nyc": "17.1.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"
}
}