forked from 99x/dynamodb-localhost
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.23 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
{
"name": "aws-dynamodb-local",
"version": "0.0.11",
"description": "Run DynamoDB local for development and testing",
"license": "MIT",
"author": "Adam Jones (domdomegg)",
"repository": {
"type": "git",
"url": "https://github.com/raisenational/aws-dynamodb-local"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest --watch",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.build.json",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"tar": "^6.2.0"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.428.0",
"@tsconfig/node-lts-strictest": "^18.12.1",
"@types/tar": "^6.1.6",
"eslint": "^8.51.0",
"eslint-config-domdomegg": "^1.2.2",
"typescript": "^4.9.5",
"vitest": "^0.29.2"
},
"eslintConfig": {
"extends": [
"eslint-config-domdomegg"
]
},
"keywords": [
"aws",
"dynamodb",
"dynamo",
"dynamodb-local",
"dynamodb-localhost",
"local-dynamodb",
"aws-dynamodb-local",
"testing",
"development",
"tool",
"local",
"localhost"
]
}