-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
96 lines (96 loc) · 2.88 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
95
96
{
"name": "@aws/amazon-location-utilities-auth-helper",
"description": "Amazon Location Utilities - Authentication Helper for JavaScript",
"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-utilities-auth-helper-js",
"repository": {
"type": "git",
"url": "https://github.com/aws-geospatial/amazon-location-utilities-auth-helper-js"
},
"bugs": {
"url": "https://github.com/aws-geospatial/amazon-location-utilities-auth-helper-js/issues",
"mail": ""
},
"contributors": [
"Eason Huang <[email protected]>"
],
"engines": {
"node": ">= 16.0.0"
},
"browser": "./dist/amazonLocationAuthHelper.js",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"unpkg": "./dist/amazonLocationAuthHelper.js",
"types": "./dist/types/index.d.ts",
"files": [
"./LICENSE.txt",
"./LICENSE-THIRD-PARTY.txt",
"./CODE_OF_CONDUCT.md",
"./CONTRIBUTING.md",
"./Notice.txt",
"./README.md",
"./package.json",
"./dist"
],
"scripts": {
"clean": "rm -r dist",
"prettier": "prettier -w .",
"prettier:check": "prettier -c .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"typedoc": "typedoc",
"test": "jest --coverage",
"build": "npm-run-all build:*",
"build:ts": "npm-run-all build-ts:*",
"build:bundle": "rollup -c",
"build-ts:types": "tsc --declaration --emitDeclarationOnly --outDir dist/types",
"build-ts:cjs": "tsc --module commonjs --outDir dist/cjs",
"build-ts:esm": "tsc --esModuleInterop --module esnext --outDir dist/esm",
"prepare": "husky install",
"prepublishOnly": "npm-run-all clean lint prettier:check test build"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
],
"!(*.{js,ts})": "prettier --write --ignore-unknown"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/credential-providers": "^3.682.0",
"@aws-sdk/types": "^3.609.0",
"@smithy/util-hex-encoding": "^2.2.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-plugin-jsdoc": "^0.4.2",
"rollup": "^3.29.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
}
}