-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 799 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 799 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "cypher-tagged-templates",
"version": "4.0.0",
"description": "A tiny helper for writing and running Cypher queries using Javascript tagged templates",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist & tsc",
"prepare": "npm run build"
},
"keywords": [
"neo4j",
"cypher",
"cql"
],
"author": "Ionut Botizan <ionut.botizan@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ionut-botizan/cypher-tagged-templates"
},
"bugs": {
"url": "https://github.com/ionut-botizan/cypher-tagged-templates/issues"
},
"peerDependencies": {
"neo4j-driver": "^4.1.0"
},
"devDependencies": {
"neo4j-driver": "^4.1.0",
"typescript": "^3.9.6"
}
}