-
- Downloads
Update package.json, README.md, .gitignore, .gitlab-ci.yml files
parent
71fab674
Branches
Tags
{ | { | ||
"name": "lib-log", | "name": "@br/log", | ||
"version": "2.0.0", | "version": "2.0.0", | ||
"description": "A simple Logger with Options!", | "description": "A simple Logger with Options!", | ||
"main": "index.js", | "main": "index.js", | ||
"scripts": { | "scripts": { | ||
"test": "jest tests/index.test.js", | "test": "jest tests/index.test.js", | ||
"test-coverage": "nyc --reporter=html --reporter=text mocha -- tests/test.js && rsync --remove-source-files -av --progress ./coverage ./docs/ && rm -Rf ./coverage", | "sonarqube": "sonar-scanner -Dsonar.projectKey=argos-log -Dsonar.sources=. -Dsonar.host.url=https://it-devops-01.br-edv.brnet.int:8999 -Dsonar.login=gitlab" | ||
"test-graphics": "nyc --reporter=html --reporter=text mocha -R mochawesome -- tests/test.js && rsync --remove-source-files -av --progress ./coverage ./docs/ && rm -Rf ./coverage && rsync --remove-source-files -av --progress ./mochawesome-report ./docs/ && rm -Rf ./mochawesome-report" | |||
}, | }, | ||
"author": "Dominik Sigmund <sigmund.dominik@googlemail.com> (https://webdad.eu)", | "author": "Dominik Sigmund <sigmund.dominik@googlemail.com> (https://webdad.eu)", | ||
"license": "ISC", | "license": "ISC", | ||
"repository": { | "repository": { | ||
"type": "git", | "type": "git", | ||
"url": "https://it-devops-01.br-edv.brnet.int/argos/log" | "url": "https://it-devops-01.br-edv.brnet.int/general/log" | ||
}, | }, | ||
"dependencies": {}, | "dependencies": {}, | ||
"devDependencies": { | "devDependencies": { | ||
"jest": "^24.9.0" | "jest": "^24.9.0" | ||
} | }, | ||
"jest": { | |||
"collectCoverage": true, | |||
"coverageReporters": [ | |||
"json", | |||
"lcov", | |||
"text", | |||
"clover", | |||
"html" | |||
], | |||
"coverageDirectory": "docs/coverage" | |||
} | } |
Please register or sign in to comment