-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "@douglasgabr/cypher-builder",
"version": "4.3.0",
"description": "Fluent CQL builder for Neo4j",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "jest",
"build": "tsc --project tsconfig.build.json --outDir dist/cjs && tsc --project tsconfig.build.json --outDir dist/esm --module es2020",
"install-husky": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DouglasGabr/cypher-builder.git"
},
"keywords": [
"cql",
"cypher",
"neo4j",
"query",
"builder"
],
"author": "Douglas Francisco Gabriel",
"license": "MIT",
"bugs": {
"url": "https://github.com/DouglasGabr/cypher-builder/issues"
},
"homepage": "https://github.com/DouglasGabr/cypher-builder#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^16.0.0",
"@swc/core": "^1.2.163",
"@swc/jest": "^0.2.20",
"@types/jest": "^27.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.2",
"jest": "^27.0.6",
"jest-extended": "^1.2.0",
"neo4j-driver": "^4.0.0",
"prettier": "2.5.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"neo4j-driver": "^4.0.0"
}
}