-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 914 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
{
"name": "dgraph-client",
"version": "0.2.7",
"description": "NodeJS Client for dgraph",
"main": "./lib/index.js",
"repository": "http://github.com/reicheltp/dgraph-client",
"author": "Paul Reichelt <[email protected]>",
"license": "MIT",
"files": [
"lib",
"update-protos.sh"
],
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-jest": "^20.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.5.2",
"babel-preset-flow": "^6.23.0",
"babel-preset-stage-0": "^6.24.1",
"flow-bin": "^0.44.2",
"jest": "^20.0.4",
"rollup": "^0.43.0",
"rollup-plugin-babel": "^2.7.1"
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"build": "rollup -c",
"install": "./update-protos.sh",
"prepublish": "yarn run build"
},
"dependencies": {
"grpc": "^1.3.9",
"wkx": "^0.4.1"
}
}