-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
64 lines (64 loc) · 1.4 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
{
"name": "@dgraphium/client",
"license": "MIT",
"version": "0.2.3",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*"
],
"author": {
"name": "Zura Benashvili",
"email": "zura.benashvili@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/binier/dgraphium.git",
"directory": "packages/client"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"dgraphium",
"dgraph",
"graph",
"database",
"client",
"query",
"builder",
"querybuilder",
"query-builder",
"orm",
"typescript"
],
"scripts": {
"clean:dist": "rimraf dist",
"compile": "tsc -b tsconfig.build.json",
"build": "yarn clean:dist && yarn compile",
"test": "jest --coverage",
"test:watch": "jest --coverage --watch",
"test:prod": "yarn test -- --no-cache",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"prepublishOnly": "yarn build"
},
"devDependencies": {
"@dgraphium/core": "^0.3.3",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.0",
"coveralls": "^3.0.2",
"jest": "^25.4.0",
"rimraf": "^3.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.8.2",
"typescript": "^3.0.3"
},
"dependencies": {
"dgraph-js": "^20.3.0",
"google-protobuf": "^3.8.0",
"grpc": "^1.21.1"
},
"peerDependencies": {
"grpc": ">=1.7.0 <2.0.0"
}
}