acuminous/zUnit

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "zunit",
  "version": "4.0.2",
  "type": "commonjs",
  "bin": {
    "zUnit": "bin/zUnit.js"
  },
  "description": "A zero dependency, non-polluting, low magic, test harness for Node.js",
  "engines": {
    "node": ">=14"
  },
  "main": "index.js",
  "types": "index.d.ts",
  "keywords": [
    "testing",
    "unit",
    "jasmine",
    "mocha",
    "tape",
    "jest",
    "alternative",
    "zero",
    "dependencies",
    "light",
    "lightweight",
    "simple",
    "typescript"
  ],
  "scripts": {
    "lint": "eslint .",
    "test": "bin/zUnit.js",
    "coverage": "nyc --report html --reporter lcov --reporter text-summary npm test",
    "example": "pushd example; npm t; popd",
    "prepare": "husky install"
  },
  "author": "Stephen Cresswell",
  "license": "ISC",
  "devDependencies": {
    "eslint": "^8.23.0",
    "eslint-config-prettier": "^8.5.0",
    "husky": "^8.0.1",
    "lint-staged": "^13.0.3",
    "nyc": "^15.1.0",
    "prettier": "2.7.1"
  },
  "directories": {
    "example": "example",
    "lib": "lib",
    "test": "test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/acuminous/zUnit.git"
  },
  "bugs": {
    "url": "https://github.com/acuminous/zUnit/issues"
  },
  "homepage": "https://acuminous.github.io/zUnit/",
  "zUnit": {
    "pollute": true,
    "require": [
      "./test/support/assertions.js",
      "./test/support/polyfill.js"
    ]
  },
  "lint-staged": {
    "**/*": "prettier --write --ignore-unknown"
  }
}