blob: 16561e9d86935e526d0662625c8a1bd95c26084f [file] [log] [blame]
{
"name": "gremlint",
"version": "3.5.6",
"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",
"jest": "^26.6.1",
"prettier": "^2.7.1",
"ts-jest": "^26.4.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.4"
},
"files": [
"lib/**/*"
],
"engines": {
"node": ">=10"
}
}