-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.35 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
{
"name": "yildiz-js",
"version": "3.0.0",
"description": "Client for Yildiz Graph Database",
"main": "index.js",
"engines" : {
"node" : ">=9.0.0"
},
"scripts": {
"build": "npm run compile",
"precompile": "npm run clean",
"compile": "tsc --pretty",
"prepublish": "npm run compile",
"clean": "rm -rf build",
"test": "DEBUG=yildiz:* _mocha -R spec --exit --timeout 5000 test/int/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yildizdb/yildiz-js.git"
},
"keywords": [
"yildiz",
"graph",
"database",
"client",
"js"
],
"author": "Christian Froehlingsdorf <[email protected]>",
"contributors": [
"Christian Froehlingsdorf <[email protected]>",
"Rian Josua Masikome (RJ) <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/yildizdb/yildiz-js/issues"
},
"homepage": "https://github.com/yildizdb/yildiz-js#readme",
"dependencies": {
"bluebird": "^3.5.1",
"debug": "^3.1.0",
"request": "^2.85.0"
},
"devDependencies": {
"@types/debug": "^0.0.30",
"@types/node": "^10.10.1",
"@types/request": "^2.47.1",
"body-parser": "^1.18.2",
"ts-node": "^3.0.4",
"tslint": "^5.8.0",
"typescript": "^2.6.2",
"express": "^4.16.3",
"mocha": "^5.0.4"
},
"pre-commit": [
"compile"
],
"pre-push": []
}