forked from neo4j/neo4j-javascript-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.18 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "neo4j-driver",
"version": "1.7.0-dev",
"description": "Connect to Neo4j 3.0.0 and up from JavaScript",
"author": "Neo4j",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/neo4j/neo4j-javascript-driver.git"
},
"scripts": {
"lint": "eslint --fix --ext .js ./",
"format": "prettier-eslint '**/*.js' '**/*.json' '**/*.md' '**/*.ts' '**/*.html' --write",
"test": "gulp test",
"build": "gulp all",
"start-neo4j": "gulp start-neo4j",
"stop-neo4j": "gulp stop-neo4j",
"run-stress-tests": "gulp run-stress-tests",
"run-ts-declaration-tests": "gulp run-ts-declaration-tests",
"docs": "esdoc -c esdoc.json",
"versionRelease": "gulp set --version $VERSION && npm version $VERSION --no-git-tag-version",
"browser": "gulp browser && gulp test-browser"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,ts,md,html}": [
"prettier-eslint --write",
"git add"
]
},
"main": "lib/index.js",
"browser": {
"./lib/v1/internal/node/index.js": "./lib/v1/internal/browser/index.js"
},
"unpkg": "lib/browser/neo4j-web.js",
"jsdelivr": "lib/browser/neo4j-web.js",
"types": "types/index.d.ts",
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"async": "^3.1.0",
"babel-eslint": "^10.0.3",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"browserify-transform-tools": "^1.7.0",
"esdoc": "^1.1.0",
"esdoc-importpath-plugin": "^1.0.2",
"esdoc-standard-plugin": "^1.0.0",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jasmine": "^2.10.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"fancy-log": "^1.3.3",
"fs-extra": "^8.1.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-batch": "^1.0.5",
"gulp-decompress": "^2.0.2",
"gulp-download": "^0.0.1",
"gulp-file": "^0.4.0",
"gulp-install": "^1.1.0",
"gulp-jasmine": "^4.0.0",
"gulp-replace": "^1.0.0",
"gulp-typescript": "^5.0.1",
"gulp-uglify": "^3.0.2",
"gulp-watch": "^5.0.1",
"husky": "^3.0.4",
"jasmine-console-reporter": "^3.1.0",
"karma": "^4.3.0",
"karma-browserify": "^6.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.2.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^2.0.1",
"karma-source-map-support": "^1.4.0",
"karma-spec-reporter": "^0.0.32",
"lint-staged": "^9.2.5",
"lodash": "^4.17.15",
"lolex": "^4.2.0",
"minimist": "^1.2.0",
"mustache": "^3.0.3",
"prettier-eslint": "^9.0.0",
"prettier-eslint-cli": "^5.0.0",
"run-sequence": "^2.2.1",
"semver": "^6.3.0",
"tmp": "0.1.0",
"typescript": "^3.5.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"webpack": "^4.39.3"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"text-encoding-utf-8": "^1.0.2",
"uri-js": "^4.2.2"
}
}