-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 997 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
37
38
39
{
"name": "neptune-gremlin",
"version": "0.0.4",
"description": "An SDK for querying an Amazon Neptune graph database using gremlin",
"main": "neptune-gremlin.js",
"homepage": "https://github.com/ericzbeard/neptune-gremlin",
"bugs": {
"url": "https://github.com/ericzbeard/neptune-gremlin/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ericzbeard/neptune-gremlin"
},
"scripts": {
"test": "jest",
"build": "npm i && npm run lint && cp neptune-gremlin.js ./cdk-test-app/lambda && cd cdk-test-app && npm i && npm run synth && cd .. && npm run test",
"lint": "eslint . --fix"
},
"keywords": [
"aws",
"amazon",
"neptune",
"gremlin",
"tinkerpop",
"graph"
],
"author": "Eric Z. Beard",
"license": "Apache-2.0",
"dependencies": {
"async": "^3.2.2",
"aws4": "^1.11.0",
"gremlin": "^3.5.1",
"util": "^0.12.4"
},
"devDependencies": {
"eslint": "^8.4.1",
"jest": "^27.4.3"
}
}