log4js2
Version:
[](https://travis-ci.org/anigenero/log4js2) [](https://codecov.io/gh/anigenero/log4js2)
76 lines (75 loc) • 1.65 kB
JSON
{
"name": "log4js2",
"version": "2.0.0-alpha1",
"scripts": {
"build": "npm run lint && tsc",
"lint": "tslint -p tsconfig.json -c tslint.json",
"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/anigenero/log4js2"
},
"bugs": {
"url": "https://github.com/anigenero/log4js2/issues"
},
"homepage": "https://github.com/anigenero/log4js2#readme",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index",
"keywords": [
"logger",
"log4j",
"log4j2",
"log4js",
"log",
"console"
],
"devDependencies": {
"@types/core-js": "^0.9.46",
"@types/jest": "^22.2.3",
"@types/node": "^7.0.66",
"codecov": "^3.0.4",
"jest": "^22.4.4",
"jest-cli": "^22.4.4",
"ts-jest": "^22.4.6",
"ts-loader": "^4.4.1",
"tslint": "^5.10.0",
"tslint-loader": "^3.6.0",
"tslint-sonarts": "^1.7.0",
"typescript": "^2.9.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"js"
],
"setupFiles": [
"<rootDir>/jest.setup.js"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/dist/",
"/node_modules/"
],
"testMatch": [
"**/__tests__/*.spec.(t|j)s"
],
"testURL": "http://localhost",
"transform": {
"^.+\\.(t|j)s?": "ts-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!typeorm)"
]
},
"dependencies": {
"reflect-metadata": "^0.1.12"
}
}