uci-utils-logger/package.json

53 lines
1.8 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",
2020-05-29 08:10:23 -07:00
"version": "0.0.18",
2018-04-05 15:46:45 -07:00
"description": "Parent Logger for all UCI modules",
2020-05-29 08:10:23 -07:00
"main": "./src/logger.js",
"exports": "./src/logger.js",
2018-04-05 15:46:45 -07:00
"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",
"dev": "UCI_ENV=dev ./node_modules/.bin/nodemon -r esm example/example",
"dev:verbose": "UCI_LOG_PRETTY='verbose' npm run dev",
"dev:terse": "UCI_LOG_PRETTY='terse' npm run dev",
"dev:where": "UCI_LOG_PRETTY='where' npm run dev",
"dev:filter:line": "UCI_LOG_PRETTY='{\"filter\":[\"line\"]}' npm run dev",
"dev:include": "UCI_LOG_PRETTY='{\"include\":\"package,appName\"}' npm run dev",
"dev:trace": "UCI_LOG_LEVEL=trace npm run dev",
"dev:warn": "UCI_LOG_LEVEL=warn npm run dev",
"dev:info:only": "UCI_LOG_SEARCH='level==`30`' npm run dev",
"dev:fatal:only": "UCI_LOG_SEARCH='level==`60`' npm run dev",
"dev:json": "UCI_LOG_LEVEL=trace UCI_LOG_JSON=true npm run dev",
"pro": "UCI_ENV='pro' node -r esm example/example",
"pro:path": "UCI_LOG_PATH=./example/example.log npm run pro"
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",
2020-05-29 08:10:23 -07:00
"make-dir": "^3.1.0",
"pino": "^6.3.0",
"pino-pretty": "^4.0.0"
2018-04-05 15:46:45 -07:00
},
"devDependencies": {
"chai": "^4.2.0",
"esm": "^3.2.25",
2020-05-29 08:10:23 -07:00
"mocha": "^7.2.0",
"nodemon": "^2.0.4",
"test-console": "^1.1.0"
2018-04-05 15:46:45 -07:00
}
}