{
  "name": "@phenomnomnominal/tsquery",
  "version": "4.1.1",
  "description": "Query TypeScript ASTs with the esquery API!",
  "main": "dist/src/index.js",
  "typings": "dist/src/index.d.ts",
  "author": "Craig Spence <craigspence0@gmail.com>",
  "repository": {
    "type": "git",
    "url": "https://github.com/phenomnomnominal/tsquery"
  },
  "license": "MIT",
  "scripts": {
    "build": "npm run clean && npm run compile && npm run lint && npm run test",
    "clean": "rimraf dist",
    "compile": "tsc",
    "lint": "npm run lint:src && npm run lint:test",
    "lint:src": "tslint --project ./tsconfig.json -c ./tslint.json 'src/**/*.ts'",
    "lint:test": "tslint --project ./tsconfig.json -c ./tslint.json 'test/**/*.ts'",
    "lint:fix": "npm run lint:src:fix && npm run lint:test",
    "lint:src:fix": "tslint -c tslint.json 'src/**/*.ts' --fix",
    "lint:test:fix": "tslint -c tslint.json 'test/**/*.ts' --fix",
    "test": "jest",
    "test:debug": "node --inspect-brk ./node_modules/jest/bin/jest.js --runInBand",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "esquery": "^1.0.1"
  },
  "peerDependencies": {
    "typescript": "^3 || ^4"
  },
  "files": [
    "dist/src"
  ],
  "devDependencies": {
    "@types/chai": "^4.2.3",
    "@types/jasmine": "^3.4.4",
    "@types/minimist": "^1.2.0",
    "@types/node": "^12.11.1",
    "chai": "^4.2.0",
    "jest": "^24.9.0",
    "rimraf": "^2.6.3",
    "ts-jest": "^24.1.0",
    "ts-node": "^8.4.1",
    "tslint": "^5.20.0",
    "typescript": "^3.6.4",
    "webpack": "^4.41.2",
    "webpack-cli": "^3.3.9"
  },
  "jest": {
    "globals": {
      "__TS_CONFIG__": "tsconfig.json"
    },
    "moduleFileExtensions": [
      "ts",
      "js"
    ],
    "collectCoverage": true,
    "collectCoverageFrom": [
      "<rootDir>/src/**"
    ],
    "coverageDirectory": "<rootDir>/reports/coverage",
    "transform": {
      "\\.(ts)$": "ts-jest"
    },
    "testRegex": "/test/.*\\.spec\\.ts$"
  }

,"_resolved": "https://registry.npmjs.org/@phenomnomnominal/tsquery/-/tsquery-4.1.1.tgz"
,"_integrity": "sha512-jjMmK1tnZbm1Jq5a7fBliM4gQwjxMU7TFoRNwIyzwlO+eHPRCFv/Nv+H/Gi1jc3WR7QURG8D5d0Tn12YGrUqBQ=="
,"_from": "@phenomnomnominal/tsquery@4.1.1"
}