bahmutov/lazy-ass

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "lazy-ass",
  "description": "Lazy assertions without performance penalty",
  "version": "0.0.0-development",
  "author": "Gleb Bahmutov <gleb.bahmutov@gmail.com>",
  "bugs": {
    "url": "https://github.com/bahmutov/lazy-ass/issues"
  },
  "config": {
    "next-update": {
      "skip": [
        "grunt",
        "grunt-cli",
        "karma"
      ]
    }
  },
  "contributors": [],
  "dependencies": {},
  "devDependencies": {
    "@types/jest": "27.0.2",
    "coveralls": "2.13.3",
    "git-issues": "1.3.1",
    "jest": "27.3.0",
    "mocha": "3.5.3",
    "pkgfiles": "2.3.2",
    "prettier": "1.13.2",
    "semantic-release": "^18.0.0",
    "ts-jest": "27.0.7",
    "typescript": "4.4.4"
  },
  "engines": {
    "node": "> 0.8"
  },
  "files": [
    "src",
    "dist"
  ],
  "homepage": "https://github.com/bahmutov/lazy-ass",
  "keywords": [
    "assertion",
    "assertions",
    "browser",
    "debugging",
    "defensive",
    "lazy",
    "node"
  ],
  "license": "MIT",
  "main": "./dist",
  "module": "./src",
  "types": "./src",
  "repository": {
    "type": "git",
    "url": "https://github.com/bahmutov/lazy-ass.git"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "prebuild": "npm run clean && npm run pretty",
    "build": "tsc",
    "commit": "git-issues && commit-wizard",
    "coveralls": "cat coverage/PhantomJS*/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
    "demo": "grunt gh-pages",
    "dont-break": "dont-break --timeout 30",
    "issues": "git-issues",
    "mocha": "mocha test/*.spec.js",
    "pkgfiles": "pkgfiles",
    "pretest": "npm run build",
    "semantic-release": "semantic-release",
    "size": "npm pack --dry",
    "test": "npm run unit && npm run jest",
    "unit": "mocha test/commonjs.spec.js",
    "jest": "jest",
    "pretty": "prettier --single-quote --no-semi --write src/*.ts __tests__/*.ts"
  },
  "jest": {
    "transform": {
      "^.+\\.ts$": "ts-jest"
    },
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.ts$",
    "moduleFileExtensions": [
      "ts",
      "js"
    ]
  }
}