-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.91 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.91 KB
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
59
60
61
62
63
64
65
66
67
68
{
"name": "@oolio-group/dynamo-helper",
"description": "DynamoDB client and query expression builder. Helps with most of the DynamoDB operations and takes care of the hard stuff for you.",
"keywords": [
"dynamodb",
"aws",
"dynamo",
"nosql"
],
"version": "0.6.5",
"files": [
"lib",
"LICENSE",
"README.md"
],
"main": "lib/index",
"types": "lib",
"repository": {
"type": "git",
"url": "http://github.com/oolio-group/dynamo-helper.git"
},
"bugs": "https://github.com/oolio-group/dynamo-helper/issues",
"license": "MIT",
"contributors": [
"Shidil Eringa <shidil@live.com>",
"Snehit Velma <snehithvelma@gmail.com>"
],
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "yarn clean && yarn compile",
"build:watch": "yarn compile -- -w",
"clean": "rm -rf ./lib && rm -rf tsconfig.build.tsbuildinfo",
"compile": "tsc -p ./tsconfig.build.json",
"test": "NODE_OPTIONS='--max-old-space-size=4096' jest --maxWorkers=2",
"lint": "eslint . --ext .ts,.js,.tsx --max-warnings=0",
"lint:report": "eslint . --output-file ./eslint_report.json --format json --ext .ts,.js,.tsx | true"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.930.0",
"@aws-sdk/lib-dynamodb": "^3.930.0",
"crypto-js": "^4.0.0",
"lodash": "4.17.21"
},
"devDependencies": {
"@babel/core": "7.12.1",
"@babel/preset-env": "7.12.1",
"@babel/preset-typescript": "7.12.1",
"@types/crypto-js": "^4.0.1",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "4.6.1",
"@typescript-eslint/parser": "4.6.1",
"babel-jest": "^29.5.0",
"eslint": "7.12.1",
"eslint-config-prettier": "6.15.0",
"husky": "4.3.0",
"jest": "^29.5.0",
"prettier": "3.2.1",
"pretty-quick": "3.1.0",
"typescript": "~5.7.2"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && pretty-quick --staged"
}
}
}