mapicgc-gl-js 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,119 @@
1
+ {
2
+ "name": "mapicgc-gl-js",
3
+ "homepage": "https://autogitlab.icgc.local/geostarters/icgc/mapicgc/mapicgc-gl-js",
4
+ "version": "0.0.3",
5
+ "description": "mapicgc-gl-js",
6
+ "author": "ICGC",
7
+ "main": "dist/commonjs/index.js",
8
+ "module": "dist/es/index.js",
9
+ "license": "MIT",
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "https://autogitlab.icgc.local/geostarters/icgc/mapicgc/mapicgc-gl-js"
13
+ },
14
+ "files": [
15
+ "dist/"
16
+ ],
17
+ "engines": {
18
+ "node": ">=8.x"
19
+ },
20
+ "scripts": {
21
+ "build-dev": "browserify src/index.js --debug --ignore-transform unassertify --standalone mapicgcgl > dist/mapicgcgl.js",
22
+ "watch-dev": "watchify src/index.js --debug --ignore-transform unassertify --standalone mapicgcgl --outfile dist/mapicgcgl-dev.js --verbose",
23
+ "build-min": "browserify src/index.js --debug --plugin [minifyify --map mapicgc-gl.js.map --output dist/mapicgc-gl.js.map] --standalone mapicgcgl | derequire > dist/mapicgc-gl.js",
24
+ "build-react": "run-s lint build-unflow",
25
+ "build-web": "run-s build-min",
26
+ "build-node": "run-s lint build-unflow build-modules",
27
+ "build-all": "run-s clean build-web build-react build-modules",
28
+ "build-unflow": "flow-remove-types src/ --out-dir dist/es/",
29
+ "build-modules": "babel --plugins @babel/plugin-transform-modules-commonjs dist/es/ --out-dir dist/commonjs/",
30
+ "build-docs": "documentation build --github --format md --config ./docs/documentation.yml --output api.md src/index.js",
31
+ "lint": "eslint --fix --cache --ignore-path .gitignore src test",
32
+ "lint-docs": "documentation lint src/index.js",
33
+ "clean": "run-s clean:dist",
34
+ "clean:dist": "rimraf dist/*",
35
+ "test": "run-s lint test:unit",
36
+ "test:unit": "jest",
37
+ "test:watch": "jest --watch",
38
+ "test:coverage": "jest --coverage",
39
+ "prepush": "npm run lint & npm run test:unit",
40
+ "precommit": "npm run lint"
41
+ },
42
+ "devDependencies": {
43
+ "@babel/cli": "^7.23.0",
44
+ "@babel/core": "^7.23.2",
45
+ "@babel/plugin-proposal-class-properties": "^7.8.3",
46
+ "@babel/plugin-transform-flow-strip-types": "^7.22.5",
47
+ "@babel/plugin-transform-modules-commonjs": "^7.23.0",
48
+ "@babel/preset-env": "^7.23.2",
49
+ "@babel/preset-flow": "^7.22.15",
50
+ "babel-core": "^7.0.0-bridge.0",
51
+ "babel-eslint": "10.0.3",
52
+ "babel-jest": "^29.7.0",
53
+ "babelify": "10.0.0",
54
+ "brfs": "^2.0.2",
55
+ "browserify": "^17.0.0",
56
+ "bubleify": "^2.0.0",
57
+ "derequire": "^2.1.1",
58
+ "documentation": "^14.0.2",
59
+ "envify": "^4.1.0",
60
+ "eslint-plugin-html": "^7.1.0",
61
+ "eslint-plugin-jest": "^27.6.0",
62
+ "eslint-plugin-node": "^11.1.0",
63
+ "execcommand-copy": "^1.3.0",
64
+ "flow-bin": "^0.220.0",
65
+ "flow-coverage-report": "^0.8.0",
66
+ "flow-remove-types": "^2.220.0",
67
+ "glob": "^10.3.10",
68
+ "husky": "^8.0.3",
69
+ "in-publish": "^2.0.1",
70
+ "jest": "29.7.0",
71
+ "jsdoc": "^4.0.2",
72
+ "jsdoc-to-markdown": "^8.0.0",
73
+ "minifyify": "^7.3.5",
74
+ "npm-run-all": "^4.1.5",
75
+ "package-json-versionify": "^1.0.4",
76
+ "rimraf": "^5.0.5",
77
+ "typedoc": "^0.25.4",
78
+ "typescript": "^5.3.3",
79
+ "unassertify": "^3.0.1",
80
+ "unflowify": "^1.0.1",
81
+ "watchify": "^4.0.0"
82
+ },
83
+ "browserify": {
84
+ "transform": [
85
+ "unflowify",
86
+ [
87
+ "babelify",
88
+ {
89
+ "presets": [
90
+ "@babel/preset-env"
91
+ ]
92
+ }
93
+ ],
94
+ [
95
+ "bubleify",
96
+ {
97
+ "bubleError": true,
98
+ "transforms": {
99
+ "dangerousForOf": true
100
+ },
101
+ "objectAssign": "Object.assign"
102
+ }
103
+ ],
104
+ "package-json-versionify",
105
+ "unassertify",
106
+ "brfs"
107
+ ]
108
+ },
109
+ "dependencies": {
110
+ "@maptiler/geocoding-control": "^1.0.0",
111
+ "@maptiler/sdk": "^1.2.0",
112
+ "@stadiamaps/maplibre-search-box": "^1.0.1",
113
+ "@tarekraafat/autocomplete.js": "^10.2.7",
114
+ "@watergis/maplibre-gl-export": "^3.0.1",
115
+ "flatgeobuf": "^3.27.1",
116
+ "maplibre-gl": "^3.5.2",
117
+ "simple-svelte-autocomplete": "^2.5.2"
118
+ }
119
+ }