UNPKG

rerun-script

Version:

Invoke npm scripts upon file changes. Configure via package.json using glob patterns.

58 lines (57 loc) 1.16 kB
{ "name": "rerun-script", "version": "0.6.0", "description": "Invoke npm scripts upon file changes. Configure via package.json using glob patterns.", "main": "index.js", "bin": { "rerun-script": "bin/rerun-script" }, "scripts": { "standard": "standard", "test": "node test.js | tap-spec", "dev": "bin/rerun-script" }, "watches": { "test": [ "*.js", "lib/**/*.js", "test/**/*.js" ], "lint": [ "*.js", "lib/**/*.js", "test/**/*.js" ] }, "keywords": [ "glob", "watch", "run command", "command", "run", "re-execute", "run-script", "npm run", "npm run-script", "filewatcher" ], "repository": { "type": "git", "url": "https://github.com/wilmoore/rerun-script" }, "author": "Wil Moore III <wil.moore@wilmoore.com>", "license": "MIT", "dependencies": { "chalk": "^1.0.0", "commander": "^2.3.0", "debug": "^2.0.0", "program-version": "^0.1.1", "shelljs": "^0.3.0", "watch-glob": "^0.1.3" }, "devDependencies": { "standard": "^3.3.0", "tap-spec": "^2.2.2", "tape": "^3.0.0" } }