-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.46 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
66
67
68
69
70
{
"name": "neo4j-driver-lite",
"version": "6.0.0-dev",
"description": "The official Neo4j lite driver for Javascript",
"main": "lib/index.js",
"types": "types/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "tsc -p tsconfig.build.json",
"build::browser": "rollup --config rollup.config.js && pnpm run minify",
"uglify": "uglifyjs --mangle --compress",
"minify": "pnpm run minify::esm && pnpm run minify::umd",
"minify::esm": "pnpm run uglify -o lib/browser/neo4j-lite-web.esm.min.js -- lib/browser/neo4j-lite-web.esm.js",
"minify::umd": "pnpm run uglify -o lib/browser/neo4j-lite-web.min.js -- lib/browser/neo4j-lite-web.js",
"test": "jest",
"test::watch": "jest --watch",
"test::integration": "jest -c jest.integration.config.ts",
"test::browser": "jest -c jest.browser.config.ts",
"test::unit": "pnpm run test",
"version::set_version.ts": "sed 's/0.0.0-dev/'$VERSION'/g' src/version.ts > src/version.tmp && mv src/version.tmp src/version.ts",
"versionRelease": "pnpm run version::set_version.ts",
"build::es6": "tsc -p tsconfig.build.json --target ES6 --outdir lib6",
"predocs": "pnpm run build && pnpm run build::es6",
"docs": "esdoc -c esdoc.json",
"prepare": "pnpm run build && pnpm run build::browser",
"clean": "rm -fr node_modules lib types"
},
"unpkg": "lib/browser/neo4j-lite-web.js",
"jsdelivr": "lib/browser/neo4j-lite-web.js",
"repository": {
"type": "git",
"url": "git://github.com/neo4j/neo4j-javascript-driver.git"
},
"keywords": [
"neo4j",
"driver"
],
"engines": {
"node": ">=18.0.0"
},
"author": "Neo4j",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/neo4j/neo4j-javascript-driver/issues"
},
"homepage": "https://github.com/neo4j/neo4j-javascript-driver#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/jest": "^29.5.10",
"browser-resolve": "2.0.0",
"esdoc": "1.1.0",
"esdoc-importpath-plugin": "1.0.2",
"esdoc-standard-plugin": "1.0.0",
"isomorphic-ws": "4.0.1",
"jest": "29.7.0",
"rollup": "2.80.0",
"rollup-plugin-polyfill-node": "0.13.0",
"testcontainers": "8.16.0",
"ts-jest": "29.4.11",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"uglify-js": "3.19.3",
"ws": "8.20.0"
},
"dependencies": {
"neo4j-driver-bolt-connection": "workspace:*",
"neo4j-driver-core": "workspace:*"
}
}