-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
63 lines (63 loc) · 1.87 KB
/
package.json
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
{
"name": "@neo4j/cypher-builder",
"version": "2.0.0",
"description": "A programmatic API for building Cypher queries for Neo4j",
"exports": "./dist/index.js",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*.ts",
"dist/**/*.ts.map",
"dist/**/*.js",
"dist/**/*.js.map"
],
"engines": {
"node": ">=16.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 --prefix ./docs",
"docs-ref": "typedoc src/Cypher.ts",
"lint": "eslint .",
"changeset": "changeset",
"release": "npm run build && changeset publish",
"prettier": "prettier . --check"
},
"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.5.0",
"@changesets/cli": "^2.27.7",
"@tsconfig/node16": "^16.1.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"neo4j-driver": "^5.23.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.4",
"typedoc": "^0.26.5",
"typescript": "^5.5.4",
"eslint-plugin-tsdoc": "^0.3.0"
}
}