-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
41 lines (41 loc) · 1.22 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
{
"name": "@bitnine-oss/ag-driver",
"version": "0.1.0",
"description": "AgensGraph client for node.js",
"main": "./build",
"scripts": {
"generate-pegjs": "npx pegjs --output ./lib/agens.js --allowed-start-rules EdgeArray,VertexArray,_Edge,_Vertex,_Path,GraphId ./pegjs/agens.pegjs",
"test": "./node_modules/.bin/mocha --recursive",
"build": "babel -d ./build ./lib -s",
"prepublish": "npm run generate-pegjs && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bitnine-oss/agensgraph-nodejs.git"
},
"keywords": [
"AgensGraph",
"graph",
"driver"
],
"author": "Alex Kwak <[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.20",
"pg": ">= 6.1.2"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/node": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.12.15",
"@babel/preset-env": "^7.12.13",
"@babel/register": "^7.12.13",
"mocha": "^8.2.1",
"pegjs": "^0.10.0"
}
}