-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 1.99 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "dynamo-locx",
"version": "1.0.1",
"description": "Simple geospatial querying for Amazon DynamoDB",
"scripts": {
"prepublish": "npm run build",
"clean": "rimraf dist",
"lint": "xo src/**/*",
"build": "npm run clean && tsc && tsc -p tsconfig.cjs.json",
"pretest": "npm run build",
"test": "xo src/**/* && ava"
},
"main": "dist/cjs/index.js",
"types": "dist/cjs/index.d.ts",
"type": "module",
"module": "dist/index.js",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"author": "Russell Steadman <[email protected]> (https://www.russellsteadman.com/)",
"repository": "https://github.com/russellsteadman/dynamo-locx.git",
"license": "Apache-2.0",
"keywords": [
"dynamodb",
"geospatial",
"geo",
"location",
"geoquery",
"aws",
"geohash",
"geodata",
"geojson",
"geolocation"
],
"dependencies": {
"long": "^5.2.3",
"nodes2ts": "^2.0.0"
},
"devDependencies": {
"@ava/typescript": "^4.0.0",
"@aws-sdk/client-dynamodb": "^3.312.0",
"ava": "^5.2.0",
"prettier": "^2.8.7",
"rimraf": "^5.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"uuid": "^9.0.0",
"xo": "^0.54.1"
},
"peerDependencies": {
"@aws-sdk/client-dynamodb": "^3.309.0"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": "tsc"
},
"timeout": "30s",
"files": [
"src/test/**/*.spec.ts"
]
},
"xo": {
"prettier": true,
"envs": [
"node",
"es2020"
],
"rules": {
"@typescript-eslint/naming-convention": [
"error",
{
"format": [
"camelCase",
"PascalCase",
"UPPER_CASE"
],
"selector": "default"
}
]
}
}
}