-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.8 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
{
"name": "@aws/amazon-location-client",
"description": "Amazon Location Client Bundle",
"license": "Apache-2.0",
"version": "1.2.0",
"keywords": [],
"author": {
"name": "Amazon Web Services",
"email": "",
"url": "https://aws.amazon.com/"
},
"homepage": "https://github.com/aws-geospatial/amazon-location-client-js",
"repository": {
"type": "git",
"url": "https://github.com/aws-geospatial/amazon-location-client-js"
},
"bugs": {
"url": "https://github.com/aws-geospatial/amazon-location-client-js/issues",
"mail": ""
},
"contributors": [
"Eason Huang <[email protected]>",
"Raymond Lee <[email protected]>"
],
"engines": {
"node": ">= 16.0.0"
},
"browser": "./dist/amazonLocationClient.js",
"main": "./dist/cjs/amazonLocationClient.cjs",
"module": "./src/index.mjs",
"unpkg": "./dist/amazonLocationClient.js",
"type": "module",
"files": [
"./LICENSE.txt",
"./CODE_OF_CONDUCT.md",
"./CONTRIBUTING.md",
"./Notice.txt",
"./README.md",
"./package.json",
"./dist"
],
"scripts": {
"clean": "rm -r dist",
"build": "rollup -c",
"prepare": "husky install",
"prepublishOnly": "npm run clean && npm run build"
},
"lint-staged": {},
"dependencies": {
"@aws-sdk/client-location": "^3.682.0",
"@aws-sdk/credential-providers": "^3.685.0",
"@aws-sdk/client-geo-maps": "^3.683.0",
"@aws-sdk/client-geo-places": "^3.683.0",
"@aws-sdk/client-geo-routes": "^3.683.0",
"@aws/amazon-location-utilities-auth-helper": "^1.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"rollup": "^4.24.0"
}
}