forked from robhogan/dynamodb-geo.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 997 Bytes
/
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
{
"name": "dynamodb-geo",
"version": "0.5.0",
"description": "A javascript port of awslabs/dynamodb-geo, for dynamodb geospatial querying",
"scripts": {
"prepublish": "tsc -d",
"clean": "rm -rf dist",
"build": "tsc -d",
"test": "mocha --require ts-node/register test/**/*.ts"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "rh389/dynamodb-geo.js",
"author": "Rob Hogan <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.216.0",
"@aws-sdk/lib-dynamodb": "^3.216.0",
"@aws-sdk/util-dynamodb": "^3.216.0",
"long": "^4.0.0",
"nodes2ts": "^3.0.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/decimal.js": "^0.0.32",
"@types/long": "^5.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "^7.0.27",
"chai": "^4.3.7",
"i": "^0.3.7",
"mocha": "^10.1.0",
"npm": "^9.1.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.3"
}
}