@aws/amazon-location-client 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,58 @@
1
+ {
2
+ "name": "@aws/amazon-location-client",
3
+ "description": "Amazon Location Client Bundle",
4
+ "license": "Apache-2.0",
5
+ "version": "1.0.0",
6
+ "keywords": [],
7
+ "author": {
8
+ "name": "Amazon Web Services",
9
+ "email": "",
10
+ "url": "https://aws.amazon.com/"
11
+ },
12
+ "homepage": "https://github.com/aws-geospatial/amazon-location-client-js",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/aws-geospatial/amazon-location-client-js"
16
+ },
17
+ "bugs": {
18
+ "url": "https://github.com/aws-geospatial/amazon-location-client-js/issues",
19
+ "mail": ""
20
+ },
21
+ "contributors": [
22
+ "Eason Huang <yuxuanh@amazon.com>",
23
+ "Raymond Lee <imraylee@amazon.com>"
24
+ ],
25
+ "engines": {
26
+ "node": ">= 16.0.0"
27
+ },
28
+ "main": "./dist/amazonLocationClient.js",
29
+ "type": "module",
30
+ "files": [
31
+ "./LICENSE.txt",
32
+ "./CODE_OF_CONDUCT.md",
33
+ "./CONTRIBUTING.md",
34
+ "./Notice.txt",
35
+ "./README.md",
36
+ "./package.json",
37
+ "./dist"
38
+ ],
39
+ "scripts": {
40
+ "clean": "rm -r dist",
41
+ "build": "rollup -c",
42
+ "prepare": "husky install",
43
+ "prepublishOnly": "npm run clean && npm run build"
44
+ },
45
+ "lint-staged": {},
46
+ "dependencies": {
47
+ "@aws-sdk/client-location": "^3.0.0",
48
+ "@aws-sdk/credential-providers": "^3.0.0"
49
+ },
50
+ "devDependencies": {
51
+ "@rollup/plugin-commonjs": "^25.0.2",
52
+ "@rollup/plugin-json": "^6.0.0",
53
+ "@rollup/plugin-node-resolve": "^15.0.2",
54
+ "husky": "^8.0.3",
55
+ "lint-staged": "^13.2.2",
56
+ "rollup": "^3.22.0"
57
+ }
58
+ }