initial commit - first commit after removing from sync package
see @uci-uitls-sync for former commits
master
David Kebler 2019-02-15 18:39:22 -08:00
commit 529ed63ddb
1 changed files with 41 additions and 0 deletions

41
package.json Normal file
View File

@ -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"
}
}