forked from neo4j/neo4j-javascript-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.14 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
{
"name": "neo4j-driver",
"version": "1.4.1-dev",
"description": "Connect to Neo4j 3.1.0 and up from JavaScript",
"author": "Neo Technology Inc.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/neo4j/neo4j-javascript-driver.git"
},
"scripts": {
"test": "gulp test",
"boltkit": "gulp test-boltkit",
"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"
},
"main": "lib/index.js",
"types": "types/index.d.ts",
"devDependencies": {
"async": "^2.4.0",
"babel-core": "^6.17.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-3": "^6.17.0",
"babel-register": "^6.18.0",
"babelify": "^7.3.0",
"browserify": "^13.1.0",
"esdoc": "0.4.8",
"esdoc-importpath-plugin": "0.1.1",
"fs-extra": "^1.0.0",
"glob": "^5.0.14",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-batch": "^1.0.5",
"gulp-concat": "^2.6.0",
"gulp-cucumber": "0.0.14",
"gulp-decompress": "^1.2.0",
"gulp-download": "^0.0.1",
"gulp-file": "^0.3.0",
"gulp-if": "^1.2.5",
"gulp-install": "^0.6.0",
"gulp-jasmine": "^2.1.0",
"gulp-jasmine-browser": "^0.2.3",
"gulp-replace": "^0.5.4",
"gulp-shell": "^0.4.3",
"gulp-typescript": "^3.1.7",
"gulp-uglify": "^1.4.2",
"gulp-util": "^3.0.6",
"gulp-watch": "^4.3.5",
"jasmine-reporters": "^2.0.7",
"lodash": "^4.17.4",
"lolex": "^1.5.2",
"merge-stream": "^1.0.0",
"minimist": "^1.2.0",
"mustache": "^2.3.0",
"phantomjs-prebuilt": "^2.1.7 ",
"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"
},
"dependencies": {
"babel-runtime": "^6.18.0"
}
}