{
  "name": "sazerac",
  "version": "2.0.0",
  "author": {
    "email": "mfcalvanese@gmail.com",
    "name": "Mike Calvanese",
    "url": "https://github.com/mikec"
  },
  "browser": "dist/sazerac.js",
  "main": "lib/main.js",
  "typings": "types/main.d.ts",
  "files": [
    "dist",
    "lib",
    "src",
    "types"
  ],
  "repository": "sazeracjs/sazerac",
  "keywords": [
    "jasmine",
    "mocha",
    "jest",
    "assertions",
    "unit-testing",
    "data-driven-tests"
  ],
  "bugs": {
    "url": "https://github.com/sazeracjs/sazerac/issues"
  },
  "license": "MIT",
  "dependencies": {
    "deep-eql": "^4.0.0",
    "lodash.at": "^4.6.0",
    "lodash.concat": "^4.5.0",
    "lodash.filter": "^4.6.0",
    "lodash.isfunction": "^3.0.9",
    "lodash.isobject": "^3.0.2",
    "lodash.isstring": "^4.0.1",
    "lodash.isundefined": "^3.0.1",
    "lodash.keys": "^4.2.0",
    "lodash.toarray": "^4.4.0",
    "sprintf-js": "^1.1.2"
  },
  "devDependencies": {
    "@babel/cli": "^7.8.4",
    "@babel/core": "^7.9.6",
    "@babel/plugin-external-helpers": "^7.8.3",
    "@babel/plugin-proposal-object-rest-spread": "^7.9.6",
    "@babel/plugin-syntax-object-rest-spread": "^7.8.3",
    "@babel/plugin-transform-modules-commonjs": "^7.9.6",
    "@babel/preset-env": "^7.9.6",
    "@babel/register": "^7.9.0",
    "babel-jest": "^25.5.1",
    "babel-loader": "^8.1.0",
    "babel-plugin-rewire": "^1.2.0",
    "chai": "^4.2.0",
    "cross-env": "^7.0.2",
    "eslint": "^6.8.0",
    "jasmine": "^3.5.0",
    "jest": "^25.5.3",
    "karma": "^5.0.4",
    "karma-babel-preprocessor": "^8.0.1",
    "karma-jasmine": "^3.1.1",
    "karma-mocha": "^2.0.1",
    "karma-phantomjs-launcher": "^1.0.4",
    "karma-spec-reporter": "0.0.32",
    "karma-webpack": "^4.0.2",
    "mocha": "^7.1.2",
    "sinon": "^9.0.2",
    "webpack": "^4.35.0",
    "webpack-cli": "^3.3.5"
  },
  "scripts": {
    "init": "eslint --init",
    "lint": "eslint src test",
    "test": "npm run test:unit && npm run test:e2e",
    "test:e2e": "npm run test:e2e-jasmine && npm run test:e2e-mocha && npm run test:e2e-jest",
    "test:e2e-jasmine": "karma start test/e2e/config/karma-jasmine.conf.js",
    "test:e2e-mocha": "karma start test/e2e/config/karma-mocha.conf.js",
    "test:e2e-jest": "jest",
    "test:unit": "BABEL_ENV=test NODE_PATH=$NODE_PATH:$PWD/src mocha test/unit --require @babel/register --recursive",
    "check": "npm run lint && npm run test",
    "build": "npm run build:commonjs && npm run build:umd && npm run build:umd:min",
    "build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=dev webpack src/main.js --output dist/sazerac.js",
    "build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=prod webpack src/main.js --output dist/sazerac.min.js",
    "build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
    "prepare": "npm run build"
  },
  "engine": {
    "node": ">= 10"
  },
  "jest": {
    "testRegex": "/test/e2e/spec/.*",
    "moduleNameMapper": {
      "sazerac": "<rootDir>/src/main.js"
    }
  }
}
