{
  "name": "@metrichor/jmespath",
  "description": "Typescript implementation of the JMESPath spec (100% compliant)",
  "version": "0.3.1",
  "author": {
    "name": "Oxford Nanopore Technologies",
    "email": "support@nanoporetech.com",
    "url": "https://nanoporetech.com"
  },
  "main": "dist/jmespath.umd.js",
  "module": "dist/jmespath.esm.js",
  "typings": "dist/types/index.d.ts",
  "types": "dist/types/index.d.ts",
  "files": [
    "dist"
  ],
  "homepage": "https://github.com/nanoporetech/jmespath-ts#readme",
  "bugs": {
    "url": "https://github.com/nanoporetech/jmespath-ts/issues",
    "mail": ""
  },
  "keywords": [
    "jmespath",
    "jsonpath",
    "query",
    "json",
    "jq",
    "xpath"
  ],
  "contributors": [],
  "repository": {
    "type": "git",
    "url": "git://github.com/nanoporetech/jmespath-ts"
  },
  "license": "MPL-2.0",
  "engines": {
    "node": ">=10.0.0"
  },
  "scripts": {
    "lint": "eslint --ignore-path .eslintignore './{src,test}/**/*.{js,ts}'",
    "lint:fix": "npm run lint -- --fix",
    "prebuild": "rimraf dist",
    "perf": "node scripts/perf.js",
    "build": "tsc --outDir dist/lib -d --module commonjs && rollup -c rollup.config.ts",
    "start": "rollup -c rollup.config.ts -w",
    "test": "jest --coverage",
    "test:watch": "jest --coverage --watch",
    "test:prod": "npm run lint && npm run test -- --no-cache",
    "deploy-docs": "ts-node scripts/gh-pages-publish",
    "report-coverage": "cat ./coverage/lcov.info | coveralls",
    "precommit": "lint-staged"
  },
  "devDependencies": {
    "@rollup/plugin-commonjs": "^19.0.0",
    "@rollup/plugin-json": "^4.1.0",
    "@rollup/plugin-node-resolve": "^13.0.0",
    "@rollup/plugin-typescript": "^8.2.1",
    "@typescript-eslint/eslint-plugin": "^4.26.0",
    "@typescript-eslint/parser": "^4.26.0",
    "benchmark": "^2.1.4",
    "coveralls": "^3.1.0",
    "eslint": "^7.27.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-prettier": "^3.4.0",
    "husky": "^6.0.0",
    "jest": "^26.6.3",
    "jest-cli": "^26.6.3",
    "jest-config": "^26.6.3",
    "lint-staged": "^11.0.0",
    "prettier": "^2.3.0",
    "prettier-eslint": "^12.0.0",
    "rimraf": "^3.0.2",
    "rollup": "^2.50.5",
    "rollup-plugin-sourcemaps": "^0.6.3",
    "rollup-plugin-terser": "^7.0.2",
    "shelljs": "^0.8.4",
    "ts-jest": "^26.5.6",
    "ts-node": "^9.1.1",
    "typescript": "^4.3.2"
  },
  "dependencies": {}
}