-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.13 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
{
"name": "dynamore",
"version": "0.0.1",
"description": "A better query language for DynamoDB",
"main": "index.ts",
"scripts": {
"build": "rm -rf dist && tsc",
"test:watch": "npm test -- --watchAll",
"test": "jest \"\\.spec\\.ts\"",
"test-integrations": "jest \"\\.integration\\.ts\" --runInBand",
"lint-check": "eslint --fix-dry-run \"lib/**/*.ts\"",
"lint-fix": "eslint --fix \"lib/**/*.ts\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pocket/dynamore.git"
},
"author": "",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/Pocket/dynamore/issues"
},
"homepage": "https://github.com/Pocket/dynamore#readme",
"devDependencies": {
"@pocket-tools/eslint-config": "2.0.0",
"@pocket-tools/tsconfig": "2.0.1",
"@types/jest": "29.2.4",
"jest": "29.3.1",
"ts-jest": "29.1.0",
"@types/lodash": "4.14.192",
"@types/sinon": "10.0.13",
"lodash": "4.17.21",
"sinon": "15.0.3"
},
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.100.0",
"@aws-sdk/lib-dynamodb": "^3.100.0",
"@aws-sdk/util-dynamodb": "^3.100.0"
}
}