-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.46 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": "type-dynamodb",
"version": "0.1.0-beta.0",
"description": "simple dynamodb ORM that uses the decorator design pattern.",
"main": "build/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts"
},
"files": [
"build"
],
"author": "AmroAbdalla",
"license": "MIT",
"keywords": [
"dynamodb",
"ORM",
"decorator",
"typescript",
"dynamo"
],
"repository": {
"type": "git",
"url": "https://github.com/scaffolds00/type-dynamodb.git"
},
"bugs": {
"url": "https://github.com/scaffolds00/type-dynamodb.git"
},
"homepage": "https://github.com/scaffolds00/type-dynamodb.git#readme",
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"dependencies": {
"aws-sdk": "^2.874.0",
"class-transformer": "^0.4.0"
},
"peerDependencies": {
"aws-sdk": "^2.874.0",
"class-transformer": "^0.4.0"
},
"types": "build/index.js.d.ts",
"devDependencies": {
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/node": "^14.14.37",
"@types/reflect-metadata": "^0.1.0",
"nodemon": "^2.0.7",
"semantic-release": "^17.4.4",
"ts-node": "^9.1.1"
}
}