forked from chargedupteam/dynamodb-geo.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 880 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
{
"name": "@aterreno/dynamodb-geo",
"version": "0.5.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 --exit"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "aterreno/dynamodb-geo.js",
"author": "Rob Hogan <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@types/decimal.js": "^7.4.0",
"@types/long": ">=4"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"nodes2ts": "^1.1.10",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.1",
"aws-sdk": "^2.550.0",
"chai": "^4.2.0",
"dynamodb-geo": "^0.4.0",
"mocha": "^6.2.1",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
}
}