@olegjs/on-change
Version:
CLI tool to run a command if file has changed since the last time that command was run
58 lines (57 loc) • 1.16 kB
JSON
{
"name": "@olegjs/on-change",
"version": "1.0.10",
"description": "CLI tool to run a command if file has changed since the last time that command was run",
"keywords": [
"CLI",
"auto",
"automate",
"change",
"checksum",
"command",
"dev",
"development",
"file",
"package-lock",
"script",
"sha",
"tool"
],
"repository": "github:olegjs/on-change",
"license": "ISC",
"author": "Oleg",
"files": [
"checksum.js",
"on-change.js"
],
"main": "on-change.js",
"bin": {
"on-change": "./on-change.js"
},
"scripts": {
"coverage": "nyc --check-coverage npm test",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prepublishOnly": "npm run coverage",
"test": "node checksum.test.js"
},
"prettier": {
"proseWrap": "always",
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"dependencies": {
"chalk": "^2.4.2",
"yargs": "^14.0.0"
},
"devDependencies": {
"coveralls": "^3.0.6",
"nyc": "^14.1.1"
},
"nyc": {
"branches": 100,
"lines": 100,
"functions": 100,
"statements": 100
}
}