UNPKG

ts-neo4j-parser

Version:

Typescript Neo4j parser to JSON

46 lines (45 loc) 1.18 kB
{ "name": "ts-neo4j-parser", "version": "1.0.0", "description": "Typescript Neo4j parser to JSON", "main": "lib/index.js", "types": "lib/index.d.ts", "directories": { "lib": "lib" }, "dependencies": { "neo4j-driver": "^4.1.2" }, "devDependencies": { "@types/jest": "^26.0.15", "jest": "^26.6.3", "prettier": "^2.1.2", "ts-jest": "^26.4.3", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.0.5" }, "scripts": { "build": "tsc -p tsconfig.json", "test": "jest --coverage --no-cache --detectOpenHandles", "format": "prettier --write \"src/**/*.ts\" ", "lint": "tslint -p tsconfig.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" }, "keywords": [ "JSON", "Neo4j", "Parser", "TypeScript" ], "author": "Jethro Sloan", "license": "ISC", "bugs": { "url": "https://github.com/jdksloan/ts-neo4j-parser/issues" }, "homepage": "https://github.com/jdksloan/ts-neo4j-parser#readme" }