forked from manosamy/dynamodb-documentclient-geo.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 928 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 928 Bytes
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
{
"name": "dynamodb-documentclient-geo",
"version": "0.4.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 --verbose --require ts-node/register test/**/*.ts"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "rh389/dynamodb-geo.js",
"author": "Rob Hogan <github@rhogan.net>",
"license": "Apache-2.0",
"dependencies": {
"@types/long": "^4.0.1",
"decimal.js": "^10.2.0",
"long": "^4.0.0",
"nodes2ts": "^1.1.10"
},
"devDependencies": {
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.1",
"aws-sdk": "2.609.0",
"chai": "^4.0.1",
"mocha": "^3.5.3",
"ts-node": "^8.10.1",
"typescript": "^3.9.2"
},
"peerDependencies": {
"aws-sdk": "2.609.0"
}
}