uci-utils-logger/package.json

49 lines
1.7 KiB
JSON
Raw Normal View History

2018-04-05 15:46:45 -07:00
{
2019-02-14 12:49:38 -08:00
"name": "@uci-utils/logger",
"version": "0.0.14",
2018-04-05 15:46:45 -07:00
"description": "Parent Logger for all UCI modules",
"main": "src/logger",
"scripts": {
"testd": "./node_modules/.bin/nodemon --exec './node_modules/.bin/mocha -r esm --timeout 30000'",
"test": "./node_modules/.bin/mocha -r esm --timeout 30000 || exit 0",
2018-04-05 15:46:45 -07:00
"testci": "istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -R spec --recursive && codecov || true",
"none": "node -r esm example/example",
"dev": "UCI_ENV=dev ./node_modules/.bin/nodemon -r esm example/example",
"dev:info": "UCI_ENV=dev UCI_LOG_SEARCH='level==`30`' ./node_modules/.bin/nodemon -r esm example/example",
"dev:fatal": "UCI_ENV=dev UCI_LOG_SEARCH='level==`60`' ./node_modules/.bin/nodemon -r esm example/example",
"json": "UCI_ENV=dev UCI_LOG_JSON=true ./node_modules/.bin/nodemon -r esm example/example",
"pro": "UCI_ENV='pro' node -r esm example/example",
"pro:alt": "UCI_ENV='pro' UCI_LOG_PATH=./example/example.log node -r esm example/example"
2018-04-05 15:46:45 -07:00
},
"author": "David Kebler",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/uCOMmandIt/uci-changeme.git"
},
"keywords": [
"node.js",
"I2C",
"raspberryPi"
],
"bugs": {
"url": "https://github.com/uCOMmandIt/uci-changeme/issues"
},
"homepage": "https://github.com/uCOMmandIt/uci-changeme#readme",
"dependencies": {
"env-paths": "^2.2.0",
"make-dir": "^3.0.0",
"pino": "^5.12.3",
"pino-pretty": "^2.6.1"
2018-04-05 15:46:45 -07:00
},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.1.0",
2019-01-25 12:36:57 -08:00
"esm": "^3.1.2",
2018-04-05 15:46:45 -07:00
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.9",
"test-console": "^1.1.0"
2018-04-05 15:46:45 -07:00
}
}