forked from bigmontz/experimental-query-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "@neo4j-labs/experimental-query-api-wrapper",
"version": "0.0.1-alpha07",
"description": "Experimental wrapper library to access Neo4j Database using Query API with a neo4j-driver-like interface.",
"main": "lib/index.js",
"types": "types/index.d.ts",
"type": "commonjs",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublish": "downdoc README.adoc",
"postpublish": "downdoc README.adoc",
"test": "yarn test::unit && yarn test::integration",
"test::watch": "jest --watch",
"test::unit": "jest --passWithNoTests",
"test::integration": "jest --passWithNoTests -c jest.integration.config.ts",
"prepare": "npm run build",
"clean": "rm -fr node_modules lib types"
},
"repository": {
"type": "git",
"url": "git://github.com/neo4j-drivers/experimental-query-api-wrapper.git"
},
"keywords": [
"http",
"neo4j",
"driver"
],
"author": "Neo4j",
"contributors": [
{
"name": "Max Gustafsson"
},
{
"name": "Antonio Barcélos"
}
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neo4j-drivers/experimental-query-api-wrapper/issues"
},
"homepage": "https://github.com/neo4j-drivers/experimental-query-api-wrapper#readme",
"devDependencies": {
"@types/jest": "^29.5.3",
"downdoc": "^1.0.2-stable",
"fast-check": "^3.10.0",
"jest": "^29.6.2",
"testcontainers": "^8.16.0",
"ts-jest": "^29.1.1",
"ts-node": "10.9.2",
"typescript": "^4.9.5"
},
"dependencies": {
"neo4j-driver-core": "^5.27.0"
},
"engines": {
"node": ">=18.0.0"
}
}