-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.93 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
{
"name": "@awboost/ddb-table-client",
"version": "0.1.0",
"type": "module",
"publishConfig": {
"access": "public"
},
"author": {
"email": "gordonmleigh@gmail.com",
"name": "Gordon Leigh"
},
"license": "MIT",
"homepage": "https://github.com/awboost/ddb-table-client#readme",
"repository": {
"type": "git",
"url": "https://github.com/awboost/ddb-table-client.git"
},
"main": "./lib/cjs/index.js",
"module": "./lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": "./lib/index.js"
},
"files": [
"dist/*.zip",
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/**/*.map",
"!lib/**/*.test.*",
"src/**/*.ts",
"!src/**/*.test.ts"
],
"scripts": {
"build": "npm run clean && npm run index && npm run compile && npm run compile:cjs && npm run lint && npm run docs",
"clean": "rm -rf lib/ *.tsbuildinfo",
"compile": "npm run index && tsc",
"compile:cjs": "tsc -p tsconfig.cjs.json",
"dev:docs": "concurrently --kill-others npm:watch:docs npm:serve:docs",
"docs": "typedoc",
"index": "node makeIndex.js src/",
"lint": "eslint src/ --ext=ts",
"serve:docs": "http-server docs/ -o",
"watch:compile": "tsc -w",
"watch:docs": "onchange src/**/*.ts -i -d 1000 -- npm run docs"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.10.0",
"@aws-sdk/lib-dynamodb": "^3.10.0",
"@aws-sdk/smithy-client": "^3.10.0",
"@aws-sdk/types": "^3.10.0",
"@aws-sdk/util-dynamodb": "^3.10.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"builtin-modules": "^3.3.0",
"concurrently": "^5.3.0",
"eslint": "^8.9.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"http-server": "^0.12.3",
"onchange": "^7.0.2",
"prettier": "^2.1.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
}
}