UNPKG

3.4 kBJSONView Raw
1{
2 "name": "neo4j-driver",
3 "version": "4.0.1",
4 "description": "Connect to Neo4j 3.0.0 and up from JavaScript",
5 "author": "Neo4j",
6 "license": "Apache-2.0",
7 "repository": {
8 "type": "git",
9 "url": "git://github.com/neo4j/neo4j-javascript-driver.git"
10 },
11 "scripts": {
12 "lint": "eslint --fix --ext .js ./",
13 "format": "prettier-eslint '**/*.js' '**/*.json' '**/*.md' '**/*.ts' '**/*.html' --write",
14 "test": "gulp test",
15 "build": "gulp all",
16 "start-neo4j": "gulp start-neo4j",
17 "stop-neo4j": "gulp stop-neo4j",
18 "run-stress-tests": "gulp run-stress-tests",
19 "run-ts-declaration-tests": "gulp run-ts-declaration-tests",
20 "docs": "esdoc -c esdoc.json",
21 "versionRelease": "gulp set --version $VERSION && npm version $VERSION --no-git-tag-version",
22 "browser": "gulp browser && gulp test-browser"
23 },
24 "husky": {
25 "hooks": {
26 "pre-commit": "lint-staged"
27 }
28 },
29 "lint-staged": {
30 "*.{js,json,ts,md,html}": [
31 "prettier-eslint --write",
32 "git add"
33 ]
34 },
35 "main": "lib/index.js",
36 "browser": {
37 "./lib/internal/node/index.js": "./lib/internal/browser/index.js"
38 },
39 "unpkg": "lib/browser/neo4j-web.js",
40 "jsdelivr": "lib/browser/neo4j-web.js",
41 "types": "types/index.d.ts",
42 "devDependencies": {
43 "@babel/core": "^7.5.5",
44 "@babel/plugin-transform-runtime": "^7.5.5",
45 "@babel/preset-env": "^7.5.5",
46 "@babel/register": "^7.5.5",
47 "@istanbuljs/nyc-config-babel": "^2.1.1",
48 "async": "^3.1.0",
49 "babel-eslint": "^10.0.3",
50 "babel-plugin-istanbul": "^5.2.0",
51 "babelify": "^10.0.0",
52 "browserify": "^16.5.0",
53 "browserify-transform-tools": "^1.7.0",
54 "esdoc": "^1.1.0",
55 "esdoc-importpath-plugin": "^1.0.2",
56 "esdoc-standard-plugin": "^1.0.0",
57 "eslint": "^6.2.2",
58 "eslint-config-standard": "^14.1.0",
59 "eslint-plugin-import": "^2.18.2",
60 "eslint-plugin-jasmine": "^2.10.1",
61 "eslint-plugin-node": "^9.1.0",
62 "eslint-plugin-promise": "^4.2.1",
63 "eslint-plugin-standard": "^4.0.1",
64 "fancy-log": "^1.3.3",
65 "fs-extra": "^8.1.0",
66 "gulp": "^4.0.2",
67 "gulp-babel": "^8.0.0",
68 "gulp-batch": "^1.0.5",
69 "gulp-decompress": "^2.0.2",
70 "gulp-download": "^0.0.1",
71 "gulp-file": "^0.4.0",
72 "gulp-install": "^1.1.0",
73 "gulp-jasmine": "^4.0.0",
74 "gulp-replace": "^1.0.0",
75 "gulp-typescript": "^5.0.1",
76 "gulp-uglify": "^3.0.2",
77 "gulp-watch": "^5.0.1",
78 "husky": "^3.0.4",
79 "istanbul": "^0.4.5",
80 "jasmine-spec-reporter": "^4.2.1",
81 "karma": "^4.3.0",
82 "karma-browserify": "^6.1.0",
83 "karma-chrome-launcher": "^3.1.0",
84 "karma-edge-launcher": "^0.4.2",
85 "karma-firefox-launcher": "^1.2.0",
86 "karma-ie-launcher": "^1.0.0",
87 "karma-jasmine": "^2.0.1",
88 "karma-source-map-support": "^1.4.0",
89 "karma-spec-reporter": "^0.0.32",
90 "lint-staged": "^9.2.5",
91 "lodash": "^4.17.15",
92 "lolex": "^4.2.0",
93 "minimist": "^1.2.0",
94 "mustache": "^3.0.3",
95 "nyc": "^14.1.1",
96 "prettier-eslint": "^9.0.0",
97 "prettier-eslint-cli": "^5.0.0",
98 "run-sequence": "^2.2.1",
99 "semver": "^6.3.0",
100 "tmp": "0.1.0",
101 "typescript": "^3.5.3",
102 "vinyl-buffer": "^1.0.1",
103 "vinyl-source-stream": "^2.0.0",
104 "webpack": "^4.39.3"
105 },
106 "dependencies": {
107 "@babel/runtime": "^7.5.5",
108 "rxjs": "^6.5.2",
109 "text-encoding-utf-8": "^1.0.2",
110 "uri-js": "^4.2.2"
111 }
112}