UNPKG

winston-azure-functions

Version:
77 lines (76 loc) 1.65 kB
{ "name": "winston-azure-functions", "version": "0.0.3", "description": "Winston transport for azure functions", "main": "dist/index.js", "scripts": { "test": "jest", "prepare": "taskr" }, "prettier": { "semi": false, "singleQuote": true }, "lint-staged": { "*.ts": [ "prettier --no-semi --single-quote --write", "git add" ] }, "jest": { "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(tsx?|jsx?)$", "moduleFileExtensions": [ "ts", "tsx", "js", "json", "jsx" ], "testPathIgnorePatterns": [ "/dist/" ] }, "repository": { "type": "git", "url": "git+https://github.com/upcompass/winston-azure-functions.git" }, "keywords": [ "winston", "logging", "azure", "functions" ], "author": "oss@e107.com.ar", "license": "MIT", "bugs": { "url": "https://github.com/upcompass/winston-azure-functions/issues" }, "homepage": "https://github.com/upcompass/winston-azure-functions#readme", "dependencies": { "winston": "^3.2.1", "winston-transport": "^4.3.0" }, "devDependencies": { "@taskr/clear": "^1.1.0", "@taskr/esnext": "^1.1.0", "@taskr/shell": "^1.1.0", "@types/jest": "^24.0.11", "husky": "^1.3.1", "jest": "^24.5.0", "lint-staged": "^8.1.5", "prettier": "^1.16.4", "taskr": "^1.1.0", "ts-jest": "^24.0.0", "tslint": "^5.14.0", "tslint-config-prettier": "^1.18.0", "typescript": "^3.3.4000" }, "husky": { "hooks": { "pre-commit": "lint-staged" } } }