@log4js2/core
Version:
log4js2 is a fast and lightweight logging library that enables logging flexibility within JavaScript/TypeScript applications, similar to Apache's [Log4j2 library](https://logging.apache.org/log4j/2.x/). It can also serve as a drop-in replacement for log4
81 lines (80 loc) • 1.86 kB
JSON
{
"name": "@log4js2/core",
"version": "2.0.9",
"scripts": {
"build": "tsc",
"build:es5": "webpack --progress --colors --mode production",
"lint": "tslint -p tsconfig.json -c tslint.json",
"jekyll": "jekyll serve --destination ./docs/",
"test": "jest",
"posttest": "codecov -f coverage/*.json"
},
"author": {
"name": "Robin Schultz",
"email": "robin@anigenero.com",
"url": "http://anigenero.com"
},
"repository": {
"type": "git",
"url": "https://github.com/log4js2/log4js2-core"
},
"bugs": {
"url": "https://github.com/log4js2/log4js2-core/issues"
},
"homepage": "https://github.com/log4js2/log4js2-core#readme",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index",
"keywords": [
"logger",
"log4j",
"log4j2",
"log4js",
"log",
"console"
],
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@types/core-js": "^2.5.2",
"@types/jest": "^24.0.15",
"@types/lodash": "^4.14.136",
"@types/node": "^12.6.8",
"babel-loader": "^8.0.6",
"codecov": "^3.5.0",
"jest": "^24.8.0",
"jest-cli": "^24.8.0",
"ts-jest": "^24.0.2",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"tslint-loader": "^3.5.4",
"tslint-sonarts": "^1.9.0",
"typescript": "^3.5.3",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"reflect-metadata": "^0.1.13"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"testMatch": [
"**/__tests__/*.spec.(t|j)s"
],
"transform": {
"^.+\\.(t|j)s?": "ts-jest"
}
}
}