dwyl/learn-tape

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "learn-tape",
  "version": "2.1.0",
  "repository": {
    "type": "git",
    "url": "https://github.com/dwyl/learn-tape.git"
  },
  "description": "Simple Test Driven Development (TDD) Tutorial using Tape",
  "author": "dwyl & friends!",
  "devDependencies": {
    "browserify": "^17.0.0",
    "jsdom": "^16.4.0",
    "nyc": "^15.1.0",
    "pre-commit": "^1.2.2",
    "tap": "^14.11.0",
    "tap-nyc": "^1.0.3",
    "tape": "^5.1.1",
    "testling": "^1.7.3"
  },
  "scripts": {
    "test": "nyc tape ./test/*.test.js | tap-nyc",
    "front-end-test": "tape ./front-end-testing/test-complete/* | tap-nyc"
  },
  "nyc": {
    "check-coverage": true,
    "lines": 100,
    "statements": 100,
    "functions": 100,
    "branches": 100,
    "include": [
      "lib/**/*.js"
    ],
    "exclude": [
      "test/**/*.spec.js"
    ],
    "reporter": [
      "lcov",
      "text-summary"
    ],
    "cache": false,
    "all": true,
    "report-dir": "./coverage"
  },
  "pre-commit": [
    "test",
    "front-end-test"
  ],
  "license": "MIT",
  "keywords": [
    "tape",
    "tap",
    "tutorial",
    "how to"
  ]
}