1 | {
|
2 | "name": "@olegjs/on-change",
|
3 | "version": "1.0.9",
|
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": "github:olegjs/on-change",
|
21 | "license": "ISC",
|
22 | "author": "Oleg",
|
23 | "main": "on-change.js",
|
24 | "bin": {
|
25 | "on-change": "./on-change.js"
|
26 | },
|
27 | "scripts": {
|
28 | "coverage": "nyc --check-coverage npm test",
|
29 | "coveralls": "nyc report --reporter=text-lcov | coveralls",
|
30 | "prepublishOnly": "npm run coverage",
|
31 | "test": "node checksum.test.js"
|
32 | },
|
33 | "nyc": {
|
34 | "branches": 100,
|
35 | "lines": 100,
|
36 | "functions": 100,
|
37 | "statements": 100
|
38 | },
|
39 | "prettier": {
|
40 | "proseWrap": "always",
|
41 | "semi": false,
|
42 | "singleQuote": true,
|
43 | "trailingComma": "all"
|
44 | },
|
45 | "dependencies": {
|
46 | "chalk": "^2.4.2",
|
47 | "yargs": "^14.0.0"
|
48 | },
|
49 | "devDependencies": {
|
50 | "coveralls": "^3.0.6",
|
51 | "nyc": "^14.1.1"
|
52 | }
|
53 | }
|