-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.07 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
{
"name": "dynamoql",
"author": "Inqnuam",
"license": "MIT",
"description": "Transforming DynamoDB Complexity into Developer Simplicity.",
"version": "1.0.2",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"module": "./dist/index.mjs",
"homepage": "https://github.com/inqnuam/dynamoql",
"repository": {
"type": "git",
"url": "git+https://github.com/inqnuam/dynamoql.git"
},
"keywords": [
"dynamodb",
"dynamoql",
"aws"
],
"scripts": {
"test:integ": "tsc -p ./tsconfig.test.json && vitest --dir test/integ/",
"test:unit": "vitest --dir test/unit/",
"test": "yarn test:unit run && yarn test:integ run",
"dev": "DEV=true node ./build.mjs",
"build": "node ./build.mjs",
"types": "tsc -p ./tsconfig.build.json",
"tsc": "tsc",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.x",
"@aws-sdk/util-dynamodb": "^3.x",
"@types/node": ">=16.6.x"
},
"devDependencies": {
"esbuild": "^0.20.1",
"husky": "^9.0.11",
"typescript": "^5.4.2",
"vitest": "^1.3.1"
}
}