forked from dynamodb-toolbox/dynamodb-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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
{
"name": "dynamodb-toolbox",
"version": "0.4.2",
"description": "A simple set of tools for working with Amazon DynamoDB and the DocumentClient.",
"author": "Jeremy Daly <[email protected]>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"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",
"check-types": "tsc --noEmit",
"lint": "eslint .",
"build": "rm -rf dist && tsc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"changelog": "git log $(git describe --tags --abbrev=0)..HEAD --oneline"
},
"license": "MIT",
"dependencies": {
"ts-toolbelt": "^6.15.5"
},
"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",
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.16",
"aws-sdk": "^2.818.0",
"coveralls": "^3.1.0",
"dynalite": "^3.2.1",
"eslint": "^8.2.0",
"jest": "^27.3.1",
"mockdate": "^3.0.2",
"prettier": "^2.2.1",
"ts-jest": "^27.0.7",
"typescript": "^4.1.3"
},
"files": [
"dist/"
]
}