forked from dynamodb-toolbox/dynamodb-toolbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.6 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
{
"name": "dynamodb-toolbox",
"version": "0.5.0-beta.0",
"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",
"test-types": "tsd",
"check-types": "tsc --noEmit",
"lint": "eslint .",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint && npm run test-types",
"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",
"tsd": "^0.23.0",
"typescript": "^4.1.3"
},
"files": [
"dist/index.*",
"dist/classes/",
"dist/lib/"
]
}