forked from tristanls/dynamodb-lock-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.04 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
{
"name": "dynamodb-lock-client",
"version": "0.5.2",
"description": "A general purpose distributed locking library built for AWS DynamoDB.",
"scripts": {
"assert-latest-node": "(node -v | grep -q ${npm_package_scriptvars_latest_node}) || (echo \"Expected node version ${npm_package_scriptvars_latest_node}, got $(node -v)\" && exit 1)",
"inject-examples": "node scripts/injectExamples.js",
"prepublishOnly": "npm run inject-examples",
"readme": "node examples/readme.js"
},
"scriptvars": {
"latest_node": "v12.8.0"
},
"main": "index.js",
"devDependencies": {
"aws-sdk": "2.508.0"
},
"dependencies": {
"@hapi/joi": "15.1.0"
},
"repository": {
"type": "git",
"url": "[email protected]:tristanls/dynamodb-lock-client.git"
},
"keywords": [
"dynamodb",
"distributed",
"lock"
],
"contributors": [
"Tristan Slominski <[email protected]>",
"Jacob Lynch",
"simlu",
"Lukas Siemon",
"Tom Yam",
"Cooper Bell <[email protected]>"
],
"license": "MIT"
}