-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.08 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
{
"homepage": "https://github.com/fabiosenracorrea/dynamodb-provider",
"author": "fabiosenracorrea",
"name": "dynamodb-provider",
"version": "1.1.5",
"description": "A dynamodb Provider that simplifies the native api. It packs with a Single Table adaptor/pseudo ORM for single table design",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/esm/index.d.ts",
"bugs": {
"url": "https://github.com/fabiosenracorrea/dynamodb-provider/issues"
},
"scripts": {
"build-both": "yarn build:esm && yarn build:cjs",
"build:esm": "tsc --project tsconfig.esm.json && tsc-alias -p tsconfig.esm.json",
"build:cjs": "tsc --project tsconfig.cjs.json --outDir lib/cjs && tsc-alias -p tsconfig.cjs.json",
"build": "tsc",
"start": "node dist/index.js",
"test": "jest --runInBand",
"lint": "eslint . --ext .ts",
"format": "prettier --write .",
"watch": "tsc-watch --onSuccess \"node dist/index.js\"",
"run-local-file": "npx ts-node -r tsconfig-paths/register -P ./tsconfig.json src/index.ts",
"build-publish": "yarn build-both && npm publish"
},
"license": "MIT",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.637.0",
"@aws-sdk/lib-dynamodb": "^3.637.0",
"@types/jest": "^29.5.12",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"aws-sdk": "^2.1048.0",
"eslint": "^8.5.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7.0",
"prettier": "^2.5.1",
"ts-jest": "^29.2.5",
"tsc-alias": "^1.8.10",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.4.1"
},
"dependencies": {
"ksuid": "^3.0.0",
"uuid": "^8.3.2"
},
"files": [
"/lib",
"README.md",
"changelog.md",
"LICENSE"
],
"keywords": ["dynamodb", "aws"],
"repository": {
"type": "git",
"url": "https://github.com/fabiosenracorrea/dynamodb-provider"
}
}