-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
85 lines (85 loc) · 2.31 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@shelf/dynamodb-parallel-scan",
"version": "3.9.2",
"description": "Scan large DynamoDB tables faster with parallelism",
"keywords": [
"aws",
"dynamodb",
"parallel-scan"
],
"repository": "shelfio/dynamodb-parallel-scan",
"license": "MIT",
"author": {
"name": "Vlad Holubiev",
"email": "[email protected]",
"url": "shelf.io"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"build": "rm -rf lib/ && yarn build:types && babel src --out-dir lib --ignore '**/*.test.ts' --extensions '.ts'",
"build:types": "tsc --emitDeclarationOnly --declaration --isolatedModules false --declarationDir lib",
"coverage": "jest --coverage",
"lint": "eslint . --ext .js,.ts,.json --fix --quiet",
"lint:ci": "eslint . --ext .js,.ts,.json --quiet",
"prepack": "yarn build",
"test": "export ENVIRONMENT=local && jest src --runInBand --forceExit",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch"
},
"lint-staged": {
"*.{html,json,md,yml}": [
"prettier --write --ignore-path=./.eslintignore"
],
"*.{ts,js}": [
"eslint --fix"
]
},
"babel": {
"extends": "@shelf/babel-config/backend"
},
"prettier": "@shelf/prettier-config",
"dependencies": {
"debug": "4.3.4",
"lodash.chunk": "4.2.0",
"lodash.clonedeep": "4.5.0",
"lodash.times": "4.3.2",
"p-map": "4.0.0"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "3.538.0",
"@aws-sdk/lib-dynamodb": "3.535.0",
"@babel/cli": "7.24.8",
"@babel/core": "7.25.2",
"@shelf/babel-config": "2.0.1",
"@shelf/eslint-config": "2.29.3",
"@shelf/jest-dynamodb": "3.4.1",
"@shelf/prettier-config": "1.0.0",
"@shelf/tsconfig": "0.0.9",
"@types/debug": "4.1.12",
"@types/jest": "29.5.12",
"@types/lodash.chunk": "4.2.9",
"@types/lodash.clonedeep": "4.5.9",
"@types/lodash.times": "4.3.9",
"@types/node": "16",
"eslint": "8.57.0",
"husky": "8.0.3",
"jest": "29.7.0",
"lint-staged": "13.3.0",
"prettier": "2.8.8",
"typescript": "5.5.4"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "3.x.x",
"@aws-sdk/lib-dynamodb": "3.x.x"
},
"engines": {
"node": ">=16"
},
"publishConfig": {
"access": "public"
}
}