forked from renet/dynamodb-geo-v3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 916 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
{
"name": "dynamodb-geo-v3-document-client",
"version": "1.1.1",
"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": "renet/dynamodb-geo-v3",
"author": "Javier Espinoza Haussmann <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@types/long": ">=3",
"nodes2ts": "^2.0.0"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/mocha": "^2.2.41",
"@types/node": "^7.0.27",
"chai": "^4.0.1",
"mocha": "^3.3.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.34.0",
"@aws-sdk/lib-dynamodb": "^3.34.0"
}
}