commit 529ed63ddb860bdf3d12b3293a21d71a4a0ed609 Author: David Kebler Date: Fri Feb 15 18:39:22 2019 -0800 0.2.1 initial commit - first commit after removing from sync package see @uci-uitls-sync for former commits diff --git a/package.json b/package.json new file mode 100644 index 0000000..de01a73 --- /dev/null +++ b/package.json @@ -0,0 +1,41 @@ +{ + "name": "@uci-utils/watcher", + "version": "0.2.1", + "description": "File System Watcher Class that emits events", + "main": "src/watcher.js", + "scripts": { + "test": "./node_modules/.bin/mocha -r esm --timeout 30000", + "testd": "UCI_ENV=dev ./node_modules/.bin/nodemon --exec './node_modules/.bin/mocha -r esm --timeout 30000' || exit 0", + "testdd": "UCI_LOG_LEVEL='trace' npm run testd", + "testde": "UCI_LOG_LEVEL='warn' npm run testd", + "testl": "UCI_ENV=pro UCI_LOG_PATH=./test/test.log 0 npm run test || exit 0" + }, + "author": "David Kebler", + "license": "MIT", + "repository": { + "type": "git", + "url": "git+https://github.com/uCOMmandIt/uci-utils.git" + }, + "keywords": [ + "node.js", + "utilities", + "read", + "write", + "helpers" + ], + "bugs": { + "url": "https://github.com/uCOMmandIt/uci-utils/issues" + }, + "homepage": "https://github.com/uCOMmandIt/uci-utils#readme", + "dependencies": { + "@uci-utils/logger": "0.0.13", + "@uci-utils/read-lines": "^0.2.1", + "chokidar": "^2.1.1" + }, + "devDependencies": { + "chai": "^4.2.0", + "esm": "^3.2.4", + "mocha": "^5.2.0", + "nodemon": "^1.18.10" + } +}