-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.11 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
{
"name": "dynamodb-orm",
"version": "0.0.1",
"description": "ORM-like library for DynamoDB",
"main": "index.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "vitest run",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sosnowski/dynamodb-orm.git"
},
"keywords": [
"aws",
"dynamodb",
"orm",
"database"
],
"author": "Damian Sosnowski",
"license": "ISC",
"bugs": {
"url": "https://github.com/sosnowski/dynamodb-orm/issues"
},
"homepage": "https://github.com/sosnowski/dynamodb-orm#readme",
"dependencies": {
"@aws-sdk/lib-dynamodb": "^3.245.0"
},
"devDependencies": {
"typescript": "^4.9.4",
"vitest": "^0.27.1",
"@types/prettier": "2.6.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "^5.42.1",
"@vitest/coverage-c8": "^0.26.3",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^8.0.0"
}
}