-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 993 Bytes
/
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
{
"name": "@dustfoundation/dynamodb-observer",
"version": "4.0.0",
"description": "DynamoDB Observer to monitor Unit Capacity usage",
"repository": "https://github.com/DustFoundation/dynamodb-observer",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "mocha -r ts-node/register 'src/**/*.test.ts'"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.309.0"
},
"devDependencies": {
"@dustfoundation/eslint-config": "^3.1.1",
"@dustfoundation/prettier-config": "^3.1.1",
"@dustfoundation/ts-config": "^3.1.1",
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^16.18.9",
"chai": "^4.3.7",
"eslint": "^8.29.0",
"mocha": "^10.2.0",
"prettier": "^2.8.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"engines": {
"node": ">=16"
}
}