trufflesuite/truffle

View on GitHub
packages/expect/package.json

Summary

Maintainability
Test Coverage
{
  "name": "@truffle/expect",
  "description": "Simple module for ensuring specific options are passed to a function",
  "license": "MIT",
  "author": "Tim Coulter <tim@trufflesuite.com>",
  "homepage": "https://github.com/trufflesuite/truffle/blob/master/packages/expect#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/trufflesuite/truffle.git",
    "directory": "packages/expect"
  },
  "bugs": {
    "url": "https://github.com/trufflesuite/truffle/issues"
  },
  "version": "0.1.7",
  "main": "dist/src/index.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "yarn build:dist",
    "build:dist": "ttsc",
    "clean": "rm -rf ./dist",
    "prepare": "yarn build",
    "test": "yarn test:types && yarn test:code",
    "test:code": "mocha",
    "test:types": "tsd"
  },
  "types": "dist/src/index.d.ts",
  "devDependencies": {
    "@types/node": "~12.12.0",
    "mocha": "10.1.0",
    "tsd": "^0.25.0",
    "ttypescript": "1.5.15",
    "typescript": "^4.9.5",
    "typescript-transform-paths": "3.3.1"
  },
  "keywords": [
    "ethereum",
    "expect",
    "truffle"
  ],
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": "^16.20 || ^18.16 || >=20"
  }
}