UNPKG

flow-watch

Version:

clear the console and run flow on file changes

43 lines (42 loc) 1.09 kB
{ "name": "flow-watch", "version": "2.0.0", "description": "clear the console and run flow on file changes", "main": "./index.js", "bin": { "flow-watch": "./index.js" }, "scripts": { "lint": "eslint *.js test", "lint:fix": "eslint --fix *.js test", "flow:watch": "node ./index.js", "test": "mocha", "test:watch": "mocha --watch", "prepublishOnly": "npm run lint && npm test", "postpublish": "git tag -a v$npm_package_version -m v$npm_package_version && git push origin v$npm_package_version" }, "keywords": [ "flow", "watch" ], "author": "Andy Edwards", "license": "MIT", "devDependencies": { "chai": "^4.2.0", "eslint": "^3.7.0", "flow-bin": "^0.41.0", "mocha": "^6.2.2" }, "dependencies": { "cross-spawn": "^6.0.3", "nodemon": "^2.0.3" }, "repository": { "type": "git", "url": "git+https://github.com/jedwards1211/flow-watch.git" }, "bugs": { "url": "https://github.com/jedwards1211/flow-watch/issues" }, "homepage": "https://github.com/jedwards1211/flow-watch#readme" }