{
  "name": "reload",
  "version": "3.4.3",
  "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": "^11.0.0",
    "serve-static": "~2.2.0",
    "ws": "~8.19.0"
  },
  "devDependencies": {
    "sinon": "21.0.2",
    "standard": "17.1.2",
    "express": "5.2.1",
    "mocha": "11.7.5",
    "nyc": "18.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"
  }
}
