-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
58 lines (58 loc) · 1.5 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
{
"type": "commonjs",
"name": "@cyclic.sh/dynamodb",
"version": "0.0.27",
"description": "SDK for interacting with Cyclic.sh (https://cyclic.sh) app AWS DynamoDB databases",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"clean": "rm dist/*",
"build": "tsc && cp src/*.js dist/",
"test": "jest",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cyclic-software/dynamodb.git"
},
"author": {
"name": "Cyclic Software",
"url": "https://www.cyclic.sh"
},
"contributors": [
"Mike Korostelev (https://github.com/korostelevm)",
"Kam Lasater (https://github.com/seekayel)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/cyclic-software/dynamodb/issues"
},
"homepage": "https://github.com/cyclic-software/dynamodb#readme",
"keywords": [
"aws",
"dynamodb",
"database",
"cyclic",
"cyclic.sh",
"@cyclic.sh"
],
"engines": {
"node": ">=14.20.0"
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"husky": "^8.0.2",
"jest": "^27.5.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "3.347.1",
"@aws-sdk/lib-dynamodb": "3.82.0"
},
"release": {
"branches": [
"main"
]
}
}