cypher-engine
Version:
Cypher Engine to generate Cypher queries
44 lines (43 loc) • 1.26 kB
JSON
{
"name": "cypher-engine",
"description": "Cypher Engine to generate Cypher queries",
"version": "1.1.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "ts-node-dev src/index.ts --watch src/",
"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"
},
"devDependencies": {
"@types/jest": "^26.0.15",
"jest": "^26.6.3",
"prettier": "^2.1.2",
"ts-jest": "^26.4.3",
"ts-node-dev": "^1.1.8",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.0.5"
},
"keywords": [
"Cypher",
"Graph Query Language",
"TypeScript"
],
"author": "Jethro Sloan",
"license": "ISC",
"bugs": {
"url": "https://github.com/jdksloan/CypherEngine/issues"
},
"homepage": "https://github.com/jdksloan/CypherEngine#readme"
}