forked from tuplo/dynoexpr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.48 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
{
"name": "@tuplo/dynoexpr",
"description": "Expression builder for AWS.DynamoDB.DocumentClient",
"version": "0.0.0-development",
"repository": "[email protected]:tuplo/dynoexpr.git",
"author": "Rui Costa",
"license": "MIT",
"keywords": [
"aws",
"amazon",
"dynamodb",
"database",
"nosql",
"documentclient"
],
"files": [
"dist/index.cjs",
"dist/index.mjs",
"dist/index.d.ts",
"dist/dynoexpr.d.ts"
],
"engines": {
"node": ">=14"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"exports": {
".": [
{
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"default": "./dist/index.mjs"
},
"./dist/index.mjs"
]
},
"types": "dist/index.d.ts",
"scripts": {
"build": "tsx sh/build.ts",
"coverage": "tsx sh/coverage.ts",
"dev": "tsx sh/dev.ts",
"format": "prettier --write src sh",
"lint:ts": "tsc --noEmit",
"lint": "eslint --ext ts src",
"test:ci": "vitest run",
"test": "vitest --watch"
},
"devDependencies": {
"@types/node": "18.14.6",
"@typescript-eslint/eslint-plugin": "5.54.0",
"@typescript-eslint/parser": "5.54.0",
"@vitest/coverage-c8": "0.29.2",
"aws-sdk": "^2.2.0",
"esbuild": "0.17.11",
"eslint": "8.35.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"nyc": "15.1.0",
"prettier": "2.8.4",
"tsx": "3.12.3",
"typescript": "4.9.5",
"vitest": "0.29.2",
"zx": "7.2.0"
}
}