forked from aws-amplify/maplibre-gl-js-amplify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.97 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
{
"name": "maplibre-gl-js-amplify",
"version": "1.5.0",
"description": "MapLibre Plugin to Support Amplify Geo Integration",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"unpkg": "dist/maplibre-gl-js-amplify.umd.min.js",
"types": "lib/esm/index.d.ts",
"files": [
"/dist",
"/lib"
],
"scripts": {
"build": "npm run clean && npm run copy:files && npm run compile && npm run bundle:umd && npm run bundle:umd:min",
"bundle:umd": "rollup lib/esm/index.js --config",
"bundle:umd:min": "terser --ecma 6 --compress --mangle -o dist/maplibre-gl-js-amplify.umd.min.js -- dist/maplibre-gl-js-amplify.umd.js && gzip -9 -c dist/maplibre-gl-js-amplify.umd.min.js > dist/maplibre-gl-js-amplify.umd.min.js.gz",
"clean": "rimraf dist && rimraf lib",
"compile": "npm run tsc",
"copy:files": "mkdir -p dist/public/ && cp src/public/* dist/public/",
"prepublish": "npm run build",
"publish:release": "yarn publish --access=public --non-interactive",
"publish:geo": "yarn publish --access=public --non-interactive --tag geo",
"test": "jest",
"test:coverage": "jest --coverage",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"semantic-release": "semantic-release"
},
"repository": {
"type": "ssh",
"url": "[email protected]:aws-amplify/maplibre-gl-js-amplify.git"
},
"keywords": [
"Amplify"
],
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/aws-amplify/maplibre-gl-js-amplify/issues"
},
"homepage": "https://github.com/aws-amplify/maplibre-gl-js-amplify#readme",
"release": {
"branches": [
{
"name": "main",
"prerelease": "unstable",
"channel": "unstable"
},
{
"name": "release"
},
{
"name": "geo",
"prerelease": "geo",
"channel": "geo"
}
]
},
"devDependencies": {
"@aws-amplify/core": "^4.3.14",
"@aws-amplify/geo": "^1.2.0",
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@types/geojson": "^7946.0.7",
"@types/jest": "^26.0.23",
"@types/maplibre-gl": "^1.13.1",
"@types/node": "^15.6.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"husky": "^7.0.4",
"jest": "^27.0.3",
"jest-transform-stub": "^2.0.0",
"maplibre-gl": "^1.14.0",
"prettier": "^2.3.0",
"rollup": "^2.55.1",
"rollup-plugin-svg": "^2.0.0",
"semantic-release": "^19.0.2",
"terser": "^5.7.1",
"ts-jest": "^27.0.2",
"typescript": "^4.3.2"
},
"peerDependencies": {
"@aws-amplify/core": "^4.3.14",
"@aws-amplify/geo": "^1.2.0",
"maplibre-gl": "^1.14.0"
},
"dependencies": {
"@maplibre/maplibre-gl-geocoder": "^1.3.0"
}
}