forked from googlemaps/js-polyline-codec
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.69 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
{
"name": "@googlemaps/polyline-codec",
"version": "1.0.29",
"description": "Encode and decode polyines in Nodejs or the browser using this package.",
"keywords": [
"google",
"maps",
"polyline"
],
"homepage": "https://github.com/googlemaps/js-polyline-codec",
"bugs": {
"url": "https://github.com/googlemaps/js-polyline-codec/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/googlemaps/js-polyline-codec.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/*"
},
"devDependencies": {
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-typescript": "^8.3.0",
"@types/google.maps": "^3.43.0",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": ">=4.1.0",
"@typescript-eslint/parser": ">=4.1.0",
"babel": "^6.23.0",
"core-js": "^3.6.5",
"eslint": "^7.8.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"rollup": "^2.26.11",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.1",
"typedoc": "^0.22.3",
"typescript": "^4.0.2"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}