| { |
| "author": "Gareth Jones <gareth.nomiddlename@gmail.com>", |
| "browser": { |
| "os": false |
| }, |
| "bugs": { |
| "url": "http://github.com/log4js-node/log4js-node/issues" |
| }, |
| "config": { |
| "validate-commit-msg": { |
| "helpMessage": "\n# allowed type: feat, fix, docs, style, refactor, example, perf, test, chore, revert\n# subject no more than 50 chars\n# a body line no more than 72 chars", |
| "maxSubjectLength": 72, |
| "subjectPattern": ".+", |
| "subjectPatternErrorMsg": "subject does not match subject pattern!", |
| "types": [ |
| "feat", |
| "fix", |
| "docs", |
| "style", |
| "refactor", |
| "example", |
| "perf", |
| "test", |
| "chore", |
| "revert" |
| ], |
| "warnOnFail": false |
| } |
| }, |
| "dependencies": { |
| "date-format": "^2.0.0", |
| "debug": "^4.1.1", |
| "flatted": "^2.0.0", |
| "rfdc": "^1.1.4", |
| "streamroller": "^1.0.6" |
| }, |
| "description": "Port of Log4js to work with node.", |
| "devDependencies": { |
| "@log4js-node/sandboxed-module": "^2.2.1", |
| "callsites": "^3.1.0", |
| "codecov": "^3.5.0", |
| "conventional-changelog": "^3.1.8", |
| "deep-freeze": "0.0.1", |
| "eslint": "^5.16.0", |
| "eslint-config-airbnb-base": "^13.1.0", |
| "eslint-import-resolver-node": "^0.3.1", |
| "eslint-plugin-import": "^2.17.3", |
| "husky": "^1.3.1", |
| "nyc": "^14.1.1", |
| "tap": "^12.0.0", |
| "typescript": "^3.5.2", |
| "validate-commit-msg": "^2.14.0" |
| }, |
| "directories": { |
| "lib": "lib", |
| "test": "test" |
| }, |
| "engines": { |
| "node": ">=6.0" |
| }, |
| "files": [ |
| "lib", |
| "types" |
| ], |
| "homepage": "https://log4js-node.github.io/log4js-node/", |
| "husky": { |
| "hooks": { |
| "commit-msg": "validate-commit-msg", |
| "pre-push": "npm test && npm run typings" |
| } |
| }, |
| "keywords": [ |
| "logging", |
| "log", |
| "log4j", |
| "node" |
| ], |
| "license": "Apache-2.0", |
| "main": "./lib/log4js", |
| "name": "log4js", |
| "nyc": { |
| "all": true, |
| "include": [ |
| "lib/**/*.js" |
| ], |
| "require": [ |
| "./test/sandbox-coverage" |
| ] |
| }, |
| "repository": { |
| "type": "git", |
| "url": "https://github.com/log4js-node/log4js-node.git" |
| }, |
| "scripts": { |
| "clean": "find test -type f ! -name '*.json' ! -name '*.js' ! -name '.eslintrc' -delete && rm *.log", |
| "codecov": "tap 'test/tap/**/*.js' --cov --coverage-report=lcov && codecov", |
| "posttest": "npm run clean", |
| "pretest": "eslint 'lib/**/*.js' 'test/**/*.js'", |
| "test": "tap 'test/tap/**/*.js' --cov", |
| "typings": "tsc -p types/tsconfig.json" |
| }, |
| "types": "./types/log4js.d.ts", |
| "version": "4.5.1" |
| } |