forked from neo4j-drivers/experimental-query-api-wrapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.71 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.71 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
{
"name": "@neo4j-labs/experimental-query-api-wrapper",
"version": "0.0.1-alpha16",
"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"
],
"browser": {
"./lib/http-connection/node/stream.js": "./lib/http-connection/browser/stream.js"
},
"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",
"yarn": "^1.22.22"
},
"dependencies": {
"neo4j-driver-core": "=6.0.1"
},
"engines": {
"node": ">=18.0.0"
}
}