-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.87 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.87 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@neo4j/cypher-builder",
"version": "3.3.0",
"description": "A programmatic API for building Cypher queries for Neo4j",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"type": "commonjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*.ts",
"dist/**/*.ts.map",
"dist/**/*.js",
"dist/**/*.js.map"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"test": "jest",
"build": "tsc --build tsconfig.production.json",
"docs": "npm run antora-docs && npm run docs-ref",
"antora-docs": "npm run build:publish --prefix ./docs",
"docs-ref": "typedoc src/Cypher.ts",
"lint": "eslint .",
"changeset": "changeset",
"release": "npm run build && changeset publish",
"prettier": "prettier . --check",
"knip": "knip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j/cypher-builder.git"
},
"keywords": [
"neo4j",
"cypher",
"query",
"builder"
],
"author": "Neo4j Inc.",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neo4j/cypher-builder/issues"
},
"homepage": "https://neo4j.github.io/cypher-builder/",
"devDependencies": {
"@changesets/changelog-github": "0.7.0",
"@changesets/cli": "2.31.0",
"@eslint/js": "10.0.1",
"@tsconfig/node24": "24.0.4",
"@types/jest": "30.0.0",
"@types/node": "25.6.0",
"eslint": "10.2.1",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-tsdoc": "0.5.2",
"jest": "30.3.0",
"jest-extended": "7.0.0",
"knip": "6.7.0",
"prettier": "3.8.3",
"ts-jest": "29.4.9",
"typedoc": "0.28.19",
"typescript": "6.0.3",
"typescript-eslint": "8.59.3"
}
}