UNPKG

1.45 kBJSONView Raw
1{
2 "name": "@olegjs/on-change",
3 "version": "1.0.13",
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 "lint": "eslint src/",
34 "prepublishOnly": "npm run lint && npm run coverage",
35 "test": "node ./src/checksum.test.js"
36 },
37 "prettier": {
38 "proseWrap": "always",
39 "semi": false,
40 "singleQuote": true,
41 "trailingComma": "all"
42 },
43 "eslintConfig": {
44 "parserOptions": {
45 "ecmaVersion": 2017
46 },
47 "env": {
48 "node": true
49 },
50 "extends": [
51 "eslint:recommended",
52 "prettier"
53 ]
54 },
55 "dependencies": {
56 "chalk": "^2.4.2",
57 "yargs": "^14.0.0"
58 },
59 "devDependencies": {
60 "coveralls": "^3.0.6",
61 "eslint": "^6.4.0",
62 "eslint-config-prettier": "^6.3.0",
63 "nyc": "^14.1.1"
64 },
65 "nyc": {
66 "branches": 100,
67 "lines": 100,
68 "functions": 100,
69 "statements": 100
70 }
71}