-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
58 lines (58 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
52
53
54
55
56
57
58
{
"name": "gremlin-aws-sigv4",
"version": "3.6.1",
"main": "index.js",
"scripts": {
"lint": "eslint ./",
"lint:fix": "eslint ./ --fix",
"test": "jest test",
"test:unit": "jest test/unit",
"test:e2e": "jest test/e2e",
"prepare": "is-ci || husky install"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"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": {
"aws4": "^1.11.0",
"debug": "^4.3.4",
"gremlin": "^3.6.1"
},
"devDependencies": {
"dotenv": "^16.0.2",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"jest": "^29.0.2",
"lint-staged": "^13.0.3",
"nock": "^13.2.9"
},
"jest": {
"collectCoverageFrom": [
"**/*.js"
],
"coveragePathIgnorePatterns": [
"coverage"
],
"collectCoverage": true,
"setupFiles": [
"./jest.setup.js"
]
}
}