-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
66 lines (66 loc) · 1.73 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": "@googlemaps/url-signature",
"version": "1.0.39",
"description": "Sign a URL for Google Maps Platform requests.",
"keywords": [
"google",
"maps",
"polyline"
],
"homepage": "https://github.com/googlemaps/js-url-signature",
"bugs": {
"url": "https://github.com/googlemaps/js-url-signature/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/js-url-signature.git"
},
"license": "Apache-2.0",
"author": "Justin Poehnelt",
"main": "dist/index.umd.js",
"unpkg": "dist/index.min.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"docs": "typedoc src/index.ts",
"format": "eslint . --fix",
"lint": "eslint .",
"prepare": "rm -rf dist && rollup -c",
"test": "jest src/*"
},
"dependencies": {
"crypto-js": "^4.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@rollup/plugin-babel": "^6.0.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/crypto-js": "^4.0.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": ">=4.33.0",
"@typescript-eslint/parser": ">=4.33.0",
"babel": "^6.23.0",
"core-js": "^3.19.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^29.7.0",
"prettier": "^2.1.1",
"rollup": "^2.58.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.1.4",
"typedoc": "^0.27.2",
"typescript": "^5.4.5"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}