-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.57 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.57 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@godaddy/aws-liveness",
"version": "2.0.3",
"description": "AWS Liveness tools",
"type": "module",
"main": "./lib/aws-liveness.mjs",
"module": "./lib/aws-liveness.mjs",
"types": "./index.d.ts",
"scripts": {
"coverage": "nyc mocha --recursive lib",
"lint": "eslint .",
"release": "standard-version",
"posttest": "npm run lint",
"test": "mocha --recursive lib"
},
"repository": {
"type": "git",
"url": "https://github.com/godaddy/aws-liveness.git"
},
"keywords": [
"aws",
"liveness",
"cloud",
"localstack"
],
"author": "GoDaddy Operating Company, LLC",
"maintainer": "Jacopo Daeli <jacopo.daeli@gmail.com>",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.848.0",
"@aws-sdk/client-kinesis": "^3.848.0",
"@aws-sdk/client-s3": "^3.848.0",
"@aws-sdk/client-sns": "^3.848.0",
"@aws-sdk/client-sqs": "^3.848.0",
"debug": "^4.1.1"
},
"devDependencies": {
"chai": "^5.2.0",
"eslint": "^9.27.0",
"eslint-config-godaddy": "^8.0.2",
"mocha": "^11.4.0",
"nyc": "^15.0.0",
"sinon": "^20.0.0",
"sinon-chai": "^4.0.0",
"standard-version": "^9.5.0"
},
"nyc": {
"check-coverage": true,
"reporter": [
"cobertura",
"json-summary",
"lcov",
"text",
"text-summary"
],
"exclude": [
"coverage/",
"**/*.test.js",
"index.js"
],
"lines": 4,
"functions": 4,
"all": true,
"cache": false,
"temp-directory": "./coverage/.nyc_output"
}
}