{
  "name": "web3js-quorum",
  "version": "22.4.0",
  "description": "Web3 JS Quorum - JSON-RPC API",
  "main": "src/index.js",
  "types": "./src/typescript/index.d.ts",
  "scripts": {
    "test": "npm run test:unit && npm run test:mock && npm run test:integration && npm run test:onchain",
    "test:unit": "jest src",
    "test:mock": "jest ./tests",
    "test:quorum": "jest integration-tests/quorum-privacy/*.test.js --runInBand",
    "pretest:integration": "PRIVACY_FLEXIBLE_GROUPS_ENABLED=false npm run network:up",
    "test:integration": "jest integration-tests/*.test.js --runInBand",
    "posttest:integration": "npm run network:down",
    "cover": "npm run cover:unit && npm run cover:mock && npm run cover:integration && npm run cover:onchain && npm run cover:report",
    "cover:unit": "npm run test:unit -- --coverage",
    "cover:mock": "npm run test:mock -- --coverage",
    "cover:integration": "npm run test:integration -- --coverage",
    "cover:onchain": "npm run test:onchain -- --coverage",
    "cover:report": "nyc report --reporter=lcov --reporter=text",
    "pretest:onchain": "PRIVACY_FLEXIBLE_GROUPS_ENABLED=true npm run network:up",
    "test:onchain": "jest integration-tests/onchainPrivacy/*.test.js",
    "posttest:onchain": "npm run network:down",
    "network:up": "node ./integration-tests/support/after.js && node ./integration-tests/support/before.js",
    "network:down": "node ./integration-tests/support/after.js",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "generate:doc": "node_modules/.bin/jsdoc --configure jsdoc.json --verbose"
  },
  "jest": {
    "testTimeout": 60000,
    "coverageThreshold": {
      "global": {
        "statements": 85,
        "branches": 85,
        "functions": 85,
        "lines": 85
      }
    },
    "testEnvironment": "node",
    "clearMocks": true,
    "collectCoverageFrom": [
      "src/*/**/*.js",
      "!src/solidity/*"
    ],
    "modulePathIgnorePatterns": [
      "<rootDir>/dist/",
      "<rootDir>/node_modules/"
    ],
    "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
    "moduleFileExtensions": [
      "ts",
      "js",
      "json",
      "node"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "eslint . --fix",
      "git add"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/ConsenSysQuorum/web3js-quorum.git"
  },
  "keywords": [
    "web3",
    "besu",
    "eea",
    "orion",
    "quorum",
    "tessera",
    "constellation"
  ],
  "author": "ConsenSys <quorum@consensys.net>",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/ConsenSysQuorum/web3js-quorum/issues"
  },
  "homepage": "https://github.com/ConsenSysQuorum/web3js-quorum#readme",
  "dependencies": {
    "ethereumjs-tx": "^2.1.2",
    "ethereumjs-util": "6.2.1",
    "lodash": "^4.17.21",
    "request-promise-native": "^1.0.9",
    "rlp": "2.2.7"
  },
  "devDependencies": {
    "async-promise-pool": "^1.0.3",
    "axios": "^0.21.4",
    "babel-eslint": "^10.1.0",
    "docdash": "^1.2.0",
    "eslint": "^7.23.0",
    "eslint-config-airbnb-base": "^14.2.1",
    "eslint-config-prettier": "^8.1.0",
    "eslint-plugin-chai-expect": "^2.2.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^24.3.5",
    "eslint-plugin-prettier": "^3.3.1",
    "eslint-plugin-promise": "^4.3.1",
    "form-data": "^4.0.0",
    "husky": "^6.0.0",
    "jest": "^26.6.3",
    "jsdoc": "^3.6.10",
    "lint-staged": "^10.5.4",
    "minimist": "^1.2.5",
    "nock": "^13.0.11",
    "nyc": "^15.1.0",
    "prettier": "^2.2.1",
    "wait-for-expect": "^3.0.2",
    "web3": "^1.5.2",
    "web3-providers-http": "^1.6.1",
    "web3-utils": "^1.7.0"
  },
  "peerDependencies": {
    "web3": "^1.x"
  }
}
