forked from robhogan/dynamodb-geo.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 829 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
{
"name": "dynamodb-geo",
"version": "0.3.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": "rh389/dynamodb-geo.js",
"author": "Rob Hogan <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@types/decimal.js": "^0.0.30",
"@types/long": ">=3",
"aws-sdk": "^2.62.0",
"nodes2ts": "^1.1.9"
},
"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": "^3.0.2",
"typescript": "^2.3.4"
}
}