-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
99 lines (99 loc) · 2.87 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
{
"name": "yildiz",
"version": "9.1.0",
"description": "Graph Database on top of Bigtable",
"main": "index.js",
"repository": "[email protected]:yildizdb/yildiz.git",
"author": "Christian Froehlingsdorf <[email protected]>",
"contributors": [
"Christian Froehlingsdorf <[email protected]>",
"Rian Josua Masikome (RJ) <[email protected]>"
],
"engines": {
"node": ">=9.0.0"
},
"license": "MIT",
"keywords": [
"graphdatabase",
"graph",
"database",
"yildiz",
"yildiz",
"graphdb",
"relation",
"hyper relation",
"hyper",
"http",
"web",
"bigtable",
"bigdata",
"hbase",
"event",
"relation",
"event-relation",
"storage"
],
"scripts": {
"build": "npm run compile && cp config.GBT.json build/ 2>/dev/null || : && cp -r config/ build/",
"precompile": "npm run clean",
"compile": "tsc --pretty",
"clean": "rm -rf build",
"prepublish": "npm run compile",
"start": "DEBUG=yildiz:* LOCAL_CONFIG=true node build/lib/index.js",
"test": "DIALECT=bigtable LOCAL_CONFIG=true _mocha -R spec --exit --timeout 20000 './test/**/!(HttpServer.test).js'",
"http": "DEBUG=yildiz:* LOCAL_CONFIG=true DIALECT=bigtable node example/yildiz-http.js",
"curl": "CURLOUT=true _mocha -R mocha-silent-reporter --exit --timeout 5000 test/int/HttpServer.test.js",
"sql": "DEBUG=yildiz:*,sql:* _mocha -R spec --exit --timeout 5000 test/int/*",
"i:self": "./scripts/self-install.sh",
"i:update": "./scripts/self-update.sh",
"docker:up": "docker-compose build --no-cache && docker-compose up -d",
"docker:logs": "docker logs yildiz_yildiz_1",
"docker:down": "docker-compose down",
"mysql": "mysql -u root -p",
"postgres": "psql -U root postgres",
"_vb": "git add . && git commit -m 'vb' && git push origin master && npm publish"
},
"dependencies": {
"@google-cloud/bigtable": "~1.0.0",
"bluebird": "~3.5.1",
"commander": "~2.15.1",
"cors": "~2.8.4",
"debug": "~3.1.0",
"fastify": "~1.5.0",
"ioredis": "~3.2.2",
"memory-cache": "~0.2.0",
"moment": "~2.22.2",
"murmurhash": "~0.0.2",
"prom-client": "~11.0.0",
"toobusy-js": "^0.5.1",
"uuid": "~3.2.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.24",
"@types/cors": "^2.8.4",
"@types/debug": "^0.0.30",
"@types/express": "^4.16.0",
"@types/ioredis": "^4.0.1",
"@types/memory-cache": "^0.2.0",
"@types/toobusy-js": "^0.5.0",
"@types/uuid": "^3.4.4",
"express": "^4.16.3",
"fastify-swagger": "~0.12.0",
"mocha": "~5.2.0",
"mocha-silent-reporter": "~1.0.0",
"request": "~2.87.0",
"request-to-curl": "~0.1.1",
"ts-node": "^3.0.4",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"yildiz-js": "~2.9.0"
},
"pre-commit": [
"compile"
],
"pre-push": [],
"preferGlobal": true,
"bin": {
"yildizdb": "bin/yildizdb.js"
}
}