forked from robhogan/dynamodb-geo.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 913 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
{
"name": "dynamodb-geo",
"version": "0.4.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": "rh389/dynamodb-geo.js",
"author": "Rob Hogan <github@rhogan.net>",
"license": "Apache-2.0",
"dependencies": {
"@types/decimal.js": "^7.4.0",
"@types/long": ">=4",
"long": "^3.2.0",
"nodes2ts": "^1.1.10"
},
"devDependencies": {
"@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7",
"@types/node": "^12.11.1",
"aws-sdk": "^2.550.0",
"chai": "^4.2.0",
"mocha": "^6.2.1",
"ts-node": "^8.4.1",
"typescript": "^3.6.4"
},
"peerDependencies": {
"aws-sdk": "^2.550.0"
}
}