-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "testcontainers-dynamodb",
"version": "1.0.1",
"author": "Ihor Mielientiev",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf dist",
"test": "jest",
"lint": "eslint 'src/*.ts'",
"lint:fix": "eslint --fix 'src/*.ts'"
},
"main": "dist/index",
"types": "dist/index",
"files": [
"dist"
],
"keywords": [
"docker",
"testcontainers",
"dynamodb",
"AWS",
"Amazon"
],
"description": "Testcontainers DynamoDB is a NodeJS library that supports tests, providing lightweight, throwaway instances of DynamoDB local database",
"license": "MIT",
"homepage": "https://github.com/mielientiev/testcontainers-dynamodb#readme",
"repository": {
"type": "git",
"url": "https://github.com/mielientiev/testcontainers-dynamodb"
},
"bugs": {
"url": "https://github.com/mielientiev/testcontainers-dynamodb/issues"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"jest": "^26.4.2",
"rimraf": "^3.0.2",
"testcontainers": "^3.4.3",
"ts-jest": "^26.3.0",
"typescript": "^4.0.2",
"aws-sdk": "^2.748.0"
},
"peerDependencies": {
"aws-sdk": "^2.748.0"
}
}