-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.75 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
59
60
61
62
63
64
{
"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.5.21",
"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 <[email protected]>",
"Snehit Velma <[email protected]>"
],
"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": "jest",
"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": "2.784.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": "26.0.15",
"@typescript-eslint/eslint-plugin": "4.6.1",
"@typescript-eslint/parser": "4.6.1",
"babel-jest": "26.6.3",
"eslint": "7.12.1",
"eslint-config-prettier": "6.15.0",
"husky": "4.3.0",
"jest": "26.6.3",
"prettier": "3.2.1",
"pretty-quick": "3.1.0",
"typescript": "4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && pretty-quick --staged"
}
}
}