{
  "name": "gremlint",
  "version": "3.8.1",
  "description": "Linter/code formatter for Gremlin",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "scripts": {
    "build": "tsc",
    "format": "prettier --write \"src/**/*.ts\"",
    "lint": "tslint -p tsconfig.json",
    "test": "jest --config jestconfig.json",
    "prepare": "npm run build",
    "prepublishOnly": "npm test && npm run lint",
    "preversion": "npm run lint",
    "version": "npm run format && git add -A src",
    "postversion": "git push && git push --tags"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/apache/tinkerpop.git"
  },
  "keywords": [
    "code",
    "formatter",
    "graph",
    "graphdb",
    "tinkerpop",
    "gremlin",
    "query"
  ],
  "author": "Øyvind Sæbø",
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://issues.apache.org/jira/browse/TINKERPOP"
  },
  "homepage": "https://tinkerpop.apache.org/",
  "devDependencies": {
    "@types/jest": "^27.5.0",
    "@types/node": "^22.5.1",
    "jest": "^26.6.1",
    "prettier": "^3.0.0",
    "ts-jest": "^26.4.2",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^4.7.4"
  },
  "files": [
    "lib/**/*"
  ],
  "engines": {
    "node": ">=20"
  }
}
