{
  "name": "@taquito/local-forging",
  "version": "17.0.0",
  "description": "Provide local forging functionality to be with taquito",
  "keywords": [
    "tezos",
    "blockchain",
    "signer"
  ],
  "main": "dist/taquito-local-forging.umd.js",
  "module": "dist/taquito-local-forging.es6.js",
  "typings": "dist/types/taquito-local-forging.d.ts",
  "files": [
    "dist",
    "signature.json"
  ],
  "publishConfig": {
    "access": "public"
  },
  "author": "Simon Boissonneault-Robert <simon@ecadlabs.com>",
  "repository": {
    "type": "git",
    "url": ""
  },
  "license": "MIT",
  "engines": {
    "node": ">=16"
  },
  "scripts": {
    "test": "jest --coverage",
    "test:watch": "jest --coverage --watch",
    "test:prod": "npm run lint && npm run test -- --no-cache",
    "lint": "eslint --ext .js,.ts .",
    "precommit": "lint-staged",
    "prebuild": "rimraf dist",
    "version-stamp": "node ../taquito/version-stamping.js",
    "build": "tsc --project ./tsconfig.prod.json --module commonjs && rollup -c rollup.config.ts",
    "start": "rollup -c rollup.config.ts -w",
    "build-webpack": "webpack --progress --color"
  },
  "lint-staged": {
    "{src,test}/**/*.ts": [
      "prettier --write",
      "eslint --fix",
      "git add"
    ]
  },
  "jest": {
    "transform": {
      ".(ts|tsx)": "ts-jest"
    },
    "testEnvironment": "node",
    "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "moduleNameMapper": {
      "^@taquito/utils$": "<rootDir>/../taquito-utils/src/taquito-utils.ts"
    },
    "coveragePathIgnorePatterns": [
      "/node_modules/",
      "/test/"
    ],
    "collectCoverageFrom": [
      "src/**/*.{js,ts}"
    ]
  },
  "dependencies": {
    "@taquito/core": "^17.0.0",
    "@taquito/utils": "^17.0.0",
    "bignumber.js": "^9.1.0"
  },
  "devDependencies": {
    "@taquito/rpc": "^17.0.0",
    "@types/bluebird": "^3.5.36",
    "@types/estree": "^1.0.0",
    "@types/jest": "^26.0.23",
    "@types/node": "^16",
    "@typescript-eslint/eslint-plugin": "^5.28.0",
    "@typescript-eslint/parser": "^5.28.0",
    "colors": "^1.4.0",
    "coveralls": "^3.1.1",
    "cross-env": "^7.0.3",
    "eslint": "^8.17.0",
    "jest": "^26.6.3",
    "jest-config": "^26.6.3",
    "lint-staged": "^13.0.1",
    "lodash.camelcase": "^4.3.0",
    "prettier": "^2.7.0",
    "prompt": "^1.3.0",
    "replace-in-file": "^6.3.5",
    "rimraf": "^3.0.2",
    "rollup": "^2.75.6",
    "rollup-plugin-json": "^4.0.0",
    "rollup-plugin-sourcemaps": "^0.6.3",
    "rollup-plugin-typescript2": "^0.32.1",
    "shelljs": "^0.8.5",
    "stream-browserify": "^3.0.0",
    "ts-jest": "^26.4.4",
    "ts-loader": "^9.3.1",
    "ts-node": "^10.4.0",
    "ts-toolbelt": "^9.6.0",
    "typescript": "~4.1.5",
    "webpack": "^5.74.0",
    "webpack-cli": "^4.10.0"
  },
  "gitHead": "551e35aeff7d6dcde1c72284238c0ed3c3aae77e"
}