forked from dynamodb-toolbox/dynamodb-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "dynamodb-toolbox",
"description": "A simple set of tools for working with Amazon DynamoDB and the DocumentClient.",
"author": "Jeremy Daly <[email protected]>",
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"type": "module",
"scripts": {
"test": "jest unit",
"test-cov": "jest unit --coverage",
"test-ci": "eslint . && jest unit --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"test-types": "tsd",
"check-types": "tsc --noEmit",
"lint": "eslint .",
"build:cjs": "tsc -p tsconfig.cjs.json && echo '{ \"type\": \"commonjs\" }' > dist/cjs/package.json",
"build:esm": "tsc -p tsconfig.esm.json && echo '{ \"type\": \"module\" }' > dist/esm/package.json",
"build": "npm run build:cjs & npm run build:esm",
"prebuild": "rm -rf dist",
"prepublishOnly": "npm test && npm run lint && npm run test-types",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline"
},
"license": "MIT",
"contributors": [
"ThomasAribart <[email protected]>",
"Naor Peled <[email protected]>"
],
"dependencies": {
"deep-copy": "^1.4.2",
"ts-toolbelt": "^9.6.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jeremydaly/dynamodb-toolbox.git"
},
"keywords": [
"serverless",
"aws",
"dynamodb",
"nosql"
],
"bugs": {
"url": "https://github.com/jeremydaly/dynamodb-toolbox/issues"
},
"homepage": "https://github.com/jeremydaly/dynamodb-toolbox#readme",
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"@aws-sdk/lib-dynamodb": "^3.0.0",
"@aws-sdk/client-dynamodb": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.1",
"@types/node": "^14.14.16",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@aws-sdk/lib-dynamodb": "^3.287.0",
"@aws-sdk/client-dynamodb": "^3.287.0",
"@aws-sdk/util-dynamodb": "^3.287.0",
"coveralls": "^3.1.0",
"eslint": "^8.2.0",
"jest": "^29.2.2",
"prettier": "^2.2.1",
"ts-jest": "^29.0.3",
"tsd": "^0.23.0",
"typescript": "^4.1.3"
},
"files": [
"dist/cjs/index.*",
"dist/cjs/package.json",
"dist/cjs/constants.*",
"dist/cjs/classes/",
"dist/cjs/lib/",
"dist/esm/index.*",
"dist/esm/package.json",
"dist/esm/constants.*",
"dist/esm/classes/",
"dist/esm/lib/"
]
}