UNPKG

1.16 kBJSONView Raw
1{
2 "name": "@olegjs/on-change",
3 "version": "1.0.12",
4 "description": "CLI tool to run a command if file has changed since the last time that command was run",
5 "keywords": [
6 "CLI",
7 "auto",
8 "automate",
9 "change",
10 "checksum",
11 "command",
12 "dev",
13 "development",
14 "file",
15 "package-lock",
16 "script",
17 "sha",
18 "tool"
19 ],
20 "repository": "https://github.com/olegjs/on-change",
21 "license": "ISC",
22 "author": "Oleg",
23 "files": [
24 "src/"
25 ],
26 "main": "./src/on-change.js",
27 "bin": {
28 "on-change": "./src/on-change.js"
29 },
30 "scripts": {
31 "coverage": "nyc --check-coverage npm test",
32 "coveralls": "nyc report --reporter=text-lcov | coveralls",
33 "prepublishOnly": "npm run coverage",
34 "test": "node ./src/checksum.test.js"
35 },
36 "prettier": {
37 "proseWrap": "always",
38 "semi": false,
39 "singleQuote": true,
40 "trailingComma": "all"
41 },
42 "dependencies": {
43 "chalk": "^2.4.2",
44 "yargs": "^14.0.0"
45 },
46 "devDependencies": {
47 "coveralls": "^3.0.6",
48 "nyc": "^14.1.1"
49 },
50 "nyc": {
51 "branches": 100,
52 "lines": 100,
53 "functions": 100,
54 "statements": 100
55 }
56}