Skip to content
Snippets Groups Projects
Select Git revision
  • 0f756f3a28e13b6ee02da089af5b13de943ff4ca
  • main default protected
  • 3.1.7
  • 3.1.6
  • 3.1.5
  • 3.1.4
  • 3.1.3
  • 3.1.2
  • 3.1.1
  • 3.1.0
  • 2.14.0
  • 2.13.5
  • 2.13.4
  • 2.13.3
  • 2.13.2
  • 2.13.0
  • 2.12.1
  • 2.12.0
  • 2.11.0
  • 2.10.1
  • 2.10.0
  • 2.9.1
22 results

package.json

Blame
  • This project manages its dependencies using npm. Learn more
    package.json 1007 B
    {
      "name": "lib-log",
      "version": "1.0.0",
      "description": "A simple Logger with Options!",
      "main": "index.js",
      "scripts": {
        "test" : "mocha tests/test.js",
        "test-coverage": "nyc --reporter=html --reporter=text mocha -- tests/test.js && rsync --remove-source-files -av --progress ./coverage ./docs/ && rm -Rf ./coverage",
        "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)",
      "license": "ISC",
      "repository": {
        "type" : "git",
        "url" : "https://github.com/WebDaD/lib-log"
      },
      "dependencies": {},
      "devDependencies": {
        "mocha": "^5.2.0",
        "mochawesome": "^3.0.3",
        "nyc": "^13.0.1",
        "stryker": "^0.29.5",
        "stryker-api": "^0.21.2"
      }
    }