1 | {
|
2 | "name": "@olegjs/on-change",
|
3 | "version": "1.0.14",
|
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 | "install",
|
16 | "modules",
|
17 | "package-lock",
|
18 | "packages",
|
19 | "script",
|
20 | "sha",
|
21 | "tool"
|
22 | ],
|
23 | "repository": "https://github.com/olegjs/on-change",
|
24 | "license": "ISC",
|
25 | "author": "Oleg",
|
26 | "files": [
|
27 | "src/"
|
28 | ],
|
29 | "main": "./src/cli.js",
|
30 | "bin": {
|
31 | "on-change": "./src/cli.js"
|
32 | },
|
33 | "scripts": {
|
34 | "coverage": "nyc npm test",
|
35 | "coveralls": "nyc report --reporter=text-lcov | coveralls",
|
36 | "lint": "eslint ./src/",
|
37 | "prepublishOnly": "npm run lint && npm run coverage",
|
38 | "test": "node test.js"
|
39 | },
|
40 | "prettier": {
|
41 | "proseWrap": "always",
|
42 | "semi": false,
|
43 | "singleQuote": true,
|
44 | "trailingComma": "all"
|
45 | },
|
46 | "eslintConfig": {
|
47 | "parserOptions": {
|
48 | "ecmaVersion": 2017
|
49 | },
|
50 | "env": {
|
51 | "node": true
|
52 | },
|
53 | "extends": [
|
54 | "eslint:recommended",
|
55 | "prettier"
|
56 | ]
|
57 | },
|
58 | "dependencies": {
|
59 | "chalk": "^2.4.2",
|
60 | "yargs": "^14.0.0"
|
61 | },
|
62 | "devDependencies": {
|
63 | "coveralls": "^3.0.6",
|
64 | "eslint": "^6.4.0",
|
65 | "eslint-config-prettier": "^6.3.0",
|
66 | "nyc": "^14.1.1"
|
67 | },
|
68 | "nyc": {
|
69 | "check-coverage": true,
|
70 | "reporter": [
|
71 | "text"
|
72 | ],
|
73 | "branches": 100,
|
74 | "lines": 100,
|
75 | "functions": 100,
|
76 | "statements": 100
|
77 | }
|
78 | }
|