forked from shutterstock/gremlin-aws-sigv4
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 908 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
40
41
42
43
44
45
{
"name": "gremlin-aws-sigv4",
"version": "3.4.1",
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"test": "jest test/unit"
},
"repository": {
"type": "git",
"url": "https://github.com/shutterstock/gremlin-aws-sigv4/"
},
"keywords": [
"aws",
"graph",
"gremlin",
"javascript",
"neptune",
"sigv4"
],
"author": "Fabrice Lamant <[email protected]>",
"license": "MIT",
"dependencies": {
"debug": "2.6.9",
"gremlin": "3.4.0",
"moment-timezone": "0.5.21",
"request": "2.88.0"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"istanbul": "^0.4.5",
"jest": "^23.5.0"
},
"jest": {
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"coverage"
],
"collectCoverage": true
}
}