This repository was archived by the owner on Jul 22, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 KB
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
{
"name": "dgraph-node",
"version": "0.3.0",
"description": "NodeJS Client for dgraph",
"repository": "https://github.com/calummoore/dgraph-node",
"author": "Calum Moore",
"license": "MIT",
"files": [
"lib"
],
"main": "lib/index.js",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^8.0.2",
"babel-jest": "^20.0.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.5.2",
"babel-preset-flow": "^6.23.0",
"babel-preset-latest-node": "^0.4.0",
"babel-preset-stage-0": "^6.24.1",
"coveralls": "^3.0.0",
"eslint": "^4.11.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.4.0",
"flow-bin": "^0.44.2",
"grpc": "^1.9.1",
"jest": "^20.0.4"
},
"scripts": {
"test": "jest --coverage --runInBand",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"test:watch": "jest --watch",
"build": "babel src --ignore .spec.js -d lib",
"prepublish": "yarn run build"
},
"dependencies": {
"dgraph-js": "^1.1.1"
},
"peerDependencies": {
"grpc": "^1.9.1"
}
}