-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.19 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
{
"name": "goshawkdb",
"version": "0.2.3",
"description": "A javascript client for goshawkdb.",
"main": "./index.js",
"scripts": {
"test": "node --harmony-async-await node_modules/.bin/ava --serial",
"doc": "esdoc -c ./esdoc.json",
"build": "webpack && npm run doc",
"start": "webpack-dev-server",
"publish-site": "npm run test && npm run build && gh-pages -d dist"
},
"engines": {
"node": ">= 7.3.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/goshawkdb/js-client.git"
},
"keywords": [
"graph",
"goshawkdb",
"db",
"client",
"database",
"transaction"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://bugs.goshawkdb.io/project/view/10/"
},
"homepage": "https://rawgit.com/goshawkdb/js-client/master/doc/index.html",
"dependencies": {
"msgpack-lite": "^0.1.26",
"ws": "^1.1.1"
},
"devDependencies": {
"ava": "^0.17.0",
"esdoc": "^0.5.2",
"esdoc-node": "^1.0.0",
"gh-pages": "^0.12.0",
"webpack": "^2.2.0",
"webpack-dev-server": "^1.16.2"
},
"directories": {
"doc": "doc",
"example": "example",
"test": "test"
}
}