forked from bitnine-oss/agensgraph-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.28 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
{
"name": "@liberation-data/agensgraph",
"version": "0.1.0-rc",
"description": "AgensGraph client for node.js",
"private": false,
"files": [
"lib/**/*"
],
"main": "./lib/index.js",
"scripts": {
"postinstall": "pegjs --output ./lib/agens.js --allowed-start-rules EdgeArray,VertexArray,_Edge,_Vertex,_Path,GraphId ./lib/agens.pegjs",
"prepack": "pegjs --output ./lib/agens.js --allowed-start-rules EdgeArray,VertexArray,_Edge,_Vertex,_Path,GraphId ./lib/agens.pegjs",
"pretest": "pegjs --output ./lib/agens.js --allowed-start-rules EdgeArray,VertexArray,_Edge,_Vertex,_Path,GraphId ./lib/agens.pegjs",
"test": "./node_modules/.bin/mocha --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/liberation-data/agensgraph-nodejs.git"
},
"keywords": [
"AgensGraph",
"graph"
],
"author": "Beomyong Lee <[email protected]> (https://bitnine.net)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/bitnine-oss/agensgraph-nodejs/issues"
},
"homepage": "https://github.com/bitnine-oss/agensgraph-nodejs#readme",
"dependencies": {
"lodash": "^4.17.10",
"pg": ">= 6.1.2"
},
"devDependencies": {
"mocha": "^4.0.1",
"pegjs": "^0.10.0",
"pegjs-loader": "^0.5.4",
"webpack": "^3.10.0"
}
}