-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.05 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
{
"name": "@trilogy-group/dynamodb-lock-client-v3",
"version": "1.0.3",
"description": "A general-purpose distributed locking library built for AWS DynamoDB V3.",
"types": "types/index.d.ts",
"scripts": {
"inject-examples": "node scripts/injectExamples.js",
"prepublishOnly": "npm run inject-examples",
"readme": "node examples/readme.js",
"test": "jest"
},
"main": "index.js",
"devDependencies": {
"jest": "26.0.1"
},
"dependencies": {
"@hapi/joi": "17.1.1"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "3.17.x"
},
"repository": {
"type": "git",
"url": "https://github.com/trilogy-group/dynamodb-lock-client-v3.git"
},
"keywords": [
"dynamodb",
"distributed",
"lock"
],
"contributors": [
"Tristan Slominski <[email protected]>",
"Jacob Lynch",
"simlu",
"Lukas Siemon",
"Tom Yam",
"Cooper Bell <[email protected]>",
"Katarina Golbang"
],
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}