-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
72 lines (72 loc) · 2.04 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "dynaglue",
"version": "2.0.3",
"description": "dynaglue",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"compile:build": "tsup src/index.ts -d dist --dts --format esm,cjs --platform node --target node16",
"build": "run-p compile:build",
"prepublishOnly": "npm run build",
"doc": "typedoc --tsconfig tsconfig.json src/index.ts",
"lint": "eslint '**/*.ts'",
"test": "jest",
"test-local": "LOCAL_DYNAMODB_ENDPOINT=http://localhost:8000 npm run test",
"prettier:check": "prettier -c **/*.ts",
"prettier:write": "prettier --write **/*.ts",
"test:watch": "jest --watch"
},
"engines": {
"node": ">=16"
},
"author": "Chris Armstrong",
"license": "Apache-2.0",
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.53.0",
"@aws-sdk/util-dynamodb": "^3.53.0",
"@swc/core": "^1.3.67",
"@swc/jest": "^0.2.26",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"dynalite": "^3.2.1",
"esbuild": "^0.16.13",
"esbuild-node-externals": "^1.4.1",
"eslint": "^8.44.0",
"jest": "^29.6.0",
"jest-dynalite": "^3.4.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.2",
"ts-node": "^8.10.2",
"tsup": "^7.1.0",
"typedoc": "^0.24.8",
"typescript": "~4.8.4"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.53.0",
"@aws-sdk/util-dynamodb": "^3.53.0"
},
"dependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^29.5.2",
"@types/lodash": "^4.14.172",
"@types/node": "^12.20.21",
"@types/object-hash": "^3.0.6",
"@types/validator": "^13.6.3",
"@types/verror": "^1.10.5",
"debug": "^4.3.4",
"lodash": "^4.17.21",
"object-hash": "^3.0.0",
"validator": "^13.6.0",
"verror": "^1.10.0"
},
"repository": {
"url": "https://github.com/chris-armstrong/dynaglue.git"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true
}
}