forked from neo4j/neo4j-javascript-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.5 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
{
"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": {
"test": "gulp test",
"build": "gulp all",
"start-neo4j": "gulp start-neo4j",
"stop-neo4j": "gulp stop-neo4j",
"run-stress-tests": "gulp run-stress-tests",
"run-tck": "gulp run-tck",
"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"
},
"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": {
"async": "^2.4.0",
"babel-core": "^6.26.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"babel-register": "^6.26.0",
"babelify": "^7.3.0",
"browserify": "^13.3.0",
"browserify-transform-tools": "^1.7.0",
"esdoc": "^1.0.4",
"esdoc-importpath-plugin": "^1.0.1",
"esdoc-standard-plugin": "^1.0.0",
"fs-extra": "^1.0.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.3",
"gulp-batch": "^1.0.5",
"gulp-cucumber": "0.0.14",
"gulp-decompress": "^1.2.0",
"gulp-download": "^0.0.1",
"gulp-file": "^0.3.0",
"gulp-install": "^0.6.0",
"gulp-jasmine": "^2.1.0",
"gulp-replace": "^0.5.4",
"gulp-typescript": "^3.1.7",
"gulp-uglify": "^1.4.2",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.5",
"jasmine-console-reporter": "^2.0.1",
"karma": "^2.0.3",
"karma-chrome-launcher": "^2.2.0",
"karma-edge-launcher": "^0.4.2",
"karma-firefox-launcher": "^1.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^1.1.2",
"karma-spec-reporter": "^0.0.32",
"lodash": "^4.17.4",
"lolex": "^1.5.2",
"minimist": "^1.2.0",
"mustache": "^2.3.0",
"run-sequence": "^1.1.4",
"semver": "^5.3.0",
"through2": "~2.0.0",
"tmp": "0.0.31",
"typescript": "^2.3.4",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0",
"webpack": "^4.19.1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"bignumber.js": "^8.0.1",
"text-encoding": "^0.6.4",
"uri-js": "^4.2.1"
}
}