-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.58 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
{
"name": "@emdgroup/dynamodb-paginator",
"version": "2.2.0",
"main": "dist/cjs/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"types": "dist/cjs/index.d.ts",
"type": "commonjs",
"repository": "https://github.com/emdgroup/dynamodb-paginator.git",
"author": "Moritz Onken <onken@netcubed.de>",
"license": "Apache-2.0",
"keywords": [
"aws",
"dynamodb",
"pagination",
"scroll",
"scan",
"query"
],
"files": [
"dist"
],
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.171.0",
"@aws-sdk/lib-dynamodb": "^3.171.0",
"@aws-sdk/smithy-client": "^3.171.0",
"@aws-sdk/types": "^3.171.0",
"@aws-sdk/util-dynamodb": "^3.171.0"
},
"devDependencies": {
"@tsconfig/node14": "^1.0.0",
"@types/mocha": "^9.1.1",
"@types/node": "^16.3.1",
"mocha": "^10.0.0",
"ts-node": "^10.9.0",
"typedoc": "^0.23.0",
"typedoc-github-wiki-theme": "^1.0.1",
"typedoc-plugin-markdown": "^3.13.0",
"typescript": "^4.8.0"
},
"engines": {
"node": ">= 12"
},
"scripts": {
"prepack": "yarn docs && rm -rf dist && yarn build",
"build": "tsc && tsc --module esnext --outDir dist/esm",
"docs": "yarn --silent docs:build && yarn --silent docs:merge",
"docs:build": "rm -rf docs README.md && yarn --silent typedoc --hideInPageTOC --excludeNotDocumented --disableSources --theme github-wiki src/index.ts",
"docs:merge": "ts-node bin/merge-docs.ts",
"test": "mocha --bail --watch-files '**/*.ts' --extension ts --timeout 60000 'src/**/*.spec.ts'"
}
}