-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.07 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.07 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "cypher-template-strings",
"version": "0.5.4",
"description": "ES6 tagged template strings for prepared statements with neo4j",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"types": "./dist/index.d.ts",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/matt-l-w/cypher-template-strings.git"
},
"keywords": [
"neo4j",
"cypher",
"prepared",
"statements",
"string",
"literal",
"tagged",
"template",
"es6"
],
"author": "matt-l-w",
"license": "ISC",
"bugs": {
"url": "https://github.com/matt-l-w/cypher-template-strings/issues"
},
"homepage": "https://github.com/matt-l-w/cypher-template-strings#readme",
"scripts": {
"build": "tsup src/index.ts --dts --format esm,cjs",
"test": "jest",
"prepublishOnly": "npm run build"
},
"devDependencies": {
"@types/jest": "^28.1.4",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"tsup": "^7.0.0",
"typescript": "^4.7.4"
}
}