-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
40 lines (40 loc) · 1023 Bytes
/
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
{
"name": "graph-workload",
"version": "0.5.1",
"description": "Tool for generating workloads running on Neo4j",
"main": "src/run-workload.js",
"scripts": {
"graph-workload": "node src/run-workload.js",
"test": "nyc --reporter=lcov mocha --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/moxious/graph-workload.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/moxious/graph-workload.git/issues"
},
"homepage": "https://github.com/moxious/graph-workload",
"dependencies": {
"bluebird": "^3.7.2",
"dimsum": "^0.2.2",
"es6-promise-pool": "^2.5.0",
"faker": "^4.1.0",
"generic-pool": "^3.6.1",
"lodash": "^4.17.20",
"moment": "^2.27.0",
"neo4j-driver": "^4.1.1",
"randomstring": "^1.1.5",
"uuid": "^3.3.2",
"yargs": "^12.0.5"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"mocha": "^7.2.0",
"nyc": "^15.1.0",
"sinon": "^7.2.4"
}
}