@lbdudc/gp-gis-dsl 0.2.4 → 0.2.5
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 +54 -54
- package/src/features.js +53 -52
package/package.json
CHANGED
|
@@ -1,54 +1,54 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@lbdudc/gp-gis-dsl",
|
|
3
|
-
"version": "0.2.
|
|
4
|
-
"homepage": "https://github.com/lbdudc/gis-dsl#readme",
|
|
5
|
-
"repository": {
|
|
6
|
-
"type": "git",
|
|
7
|
-
"url": "git+https://github.com/lbdudc/gis-dsl.git"
|
|
8
|
-
},
|
|
9
|
-
"description": "A library that parses a DSL instance and generates the spec for the web-based GIS SPL.",
|
|
10
|
-
"bin": {
|
|
11
|
-
"gis-dsl": "src/cli.js"
|
|
12
|
-
},
|
|
13
|
-
"main": "src/index.js",
|
|
14
|
-
"type": "module",
|
|
15
|
-
"author": "Álex Cortiñas",
|
|
16
|
-
"dependencies": {
|
|
17
|
-
"antlr4": "^4.13.0",
|
|
18
|
-
"meow": "^12.0.1",
|
|
19
|
-
"mocha": "^10.2.0"
|
|
20
|
-
},
|
|
21
|
-
"devDependencies": {
|
|
22
|
-
"eslint": "^8.54.0",
|
|
23
|
-
"eslint-config-prettier": "^9.0.0",
|
|
24
|
-
"eslint-plugin-prettier": "^5.0.1",
|
|
25
|
-
"husky": "^8.0.3",
|
|
26
|
-
"lint-staged": "^15.1.0",
|
|
27
|
-
"npm-run-all": "^4.1.5",
|
|
28
|
-
"prettier": "^3.1.0",
|
|
29
|
-
"strip-bom": "^5.0.0"
|
|
30
|
-
},
|
|
31
|
-
"keywords": [
|
|
32
|
-
"gis",
|
|
33
|
-
"dsl"
|
|
34
|
-
],
|
|
35
|
-
"license": "MIT",
|
|
36
|
-
"lint-staged": {
|
|
37
|
-
"*.{json,md,yml}": "prettier --write",
|
|
38
|
-
"*.{js}": [
|
|
39
|
-
"eslint --fix",
|
|
40
|
-
"prettier --write"
|
|
41
|
-
]
|
|
42
|
-
},
|
|
43
|
-
"scripts": {
|
|
44
|
-
"build-grammar": "antlr -Dlanguage=JavaScript -lib grammar -o src/lib -visitor -Xexact-output-dir grammar/GISGrammar.g4",
|
|
45
|
-
"eslint": "eslint --ext js src",
|
|
46
|
-
"eslint:fix": "eslint --ext js --fix src",
|
|
47
|
-
"lint": "npm-run-all eslint prettier",
|
|
48
|
-
"lint:fix": "npm-run-all eslint:fix prettier:fix",
|
|
49
|
-
"prettier": "prettier --check --ignore-unknown src",
|
|
50
|
-
"prettier:fix": "prettier --write --ignore-unknown src",
|
|
51
|
-
"prepare": "husky install",
|
|
52
|
-
"test": "mocha --ui qunit"
|
|
53
|
-
}
|
|
54
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@lbdudc/gp-gis-dsl",
|
|
3
|
+
"version": "0.2.5",
|
|
4
|
+
"homepage": "https://github.com/lbdudc/gis-dsl#readme",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/lbdudc/gis-dsl.git"
|
|
8
|
+
},
|
|
9
|
+
"description": "A library that parses a DSL instance and generates the spec for the web-based GIS SPL.",
|
|
10
|
+
"bin": {
|
|
11
|
+
"gis-dsl": "src/cli.js"
|
|
12
|
+
},
|
|
13
|
+
"main": "src/index.js",
|
|
14
|
+
"type": "module",
|
|
15
|
+
"author": "Álex Cortiñas",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"antlr4": "^4.13.0",
|
|
18
|
+
"meow": "^12.0.1",
|
|
19
|
+
"mocha": "^10.2.0"
|
|
20
|
+
},
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"eslint": "^8.54.0",
|
|
23
|
+
"eslint-config-prettier": "^9.0.0",
|
|
24
|
+
"eslint-plugin-prettier": "^5.0.1",
|
|
25
|
+
"husky": "^8.0.3",
|
|
26
|
+
"lint-staged": "^15.1.0",
|
|
27
|
+
"npm-run-all": "^4.1.5",
|
|
28
|
+
"prettier": "^3.1.0",
|
|
29
|
+
"strip-bom": "^5.0.0"
|
|
30
|
+
},
|
|
31
|
+
"keywords": [
|
|
32
|
+
"gis",
|
|
33
|
+
"dsl"
|
|
34
|
+
],
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"lint-staged": {
|
|
37
|
+
"*.{json,md,yml}": "prettier --write",
|
|
38
|
+
"*.{js}": [
|
|
39
|
+
"eslint --fix",
|
|
40
|
+
"prettier --write"
|
|
41
|
+
]
|
|
42
|
+
},
|
|
43
|
+
"scripts": {
|
|
44
|
+
"build-grammar": "antlr -Dlanguage=JavaScript -lib grammar -o src/lib -visitor -Xexact-output-dir grammar/GISGrammar.g4",
|
|
45
|
+
"eslint": "eslint --ext js src",
|
|
46
|
+
"eslint:fix": "eslint --ext js --fix src",
|
|
47
|
+
"lint": "npm-run-all eslint prettier",
|
|
48
|
+
"lint:fix": "npm-run-all eslint:fix prettier:fix",
|
|
49
|
+
"prettier": "prettier --check --ignore-unknown src",
|
|
50
|
+
"prettier:fix": "prettier --write --ignore-unknown src",
|
|
51
|
+
"prepare": "husky install",
|
|
52
|
+
"test": "mocha --ui qunit"
|
|
53
|
+
}
|
|
54
|
+
}
|
package/src/features.js
CHANGED
|
@@ -1,52 +1,53 @@
|
|
|
1
|
-
export default [
|
|
2
|
-
"MapViewer",
|
|
3
|
-
"Tools",
|
|
4
|
-
"DM_SpatialDatabase",
|
|
5
|
-
"DM_GenerationType",
|
|
6
|
-
"MV_MapServer",
|
|
7
|
-
"MV_Tools",
|
|
8
|
-
"MV_MapManagement",
|
|
9
|
-
"DM_SD_PostGIS",
|
|
10
|
-
"DM_GT_Sequence",
|
|
11
|
-
"MV_MM_MultipleMapViewer",
|
|
12
|
-
"MV_MM_MMV_MapSelectorInMapViewer",
|
|
13
|
-
"MV_MM_MMV_MapSelectorInMenuElement",
|
|
14
|
-
"MV_MS_GeoServer",
|
|
15
|
-
"GUI_Lists",
|
|
16
|
-
"GUI_L_FormLink",
|
|
17
|
-
"GUI_L_F_BasicSearch",
|
|
18
|
-
"GUI_L_Filterable",
|
|
19
|
-
"GUI_L_Sortable",
|
|
20
|
-
"GUI_L_LocateInMap",
|
|
21
|
-
"GUI_L_ViewListAsMap",
|
|
22
|
-
"MV_ContextInformation",
|
|
23
|
-
"MV_CI_Scale",
|
|
24
|
-
"MV_CI_Map",
|
|
25
|
-
"MV_CI_CenterCoordinates",
|
|
26
|
-
"MV_CI_Dimensions",
|
|
27
|
-
"MV_DetailOnClick",
|
|
28
|
-
"MV_LayerManagement",
|
|
29
|
-
"MV_LM_CenterViewOnLayer",
|
|
30
|
-
"MV_LM_Order",
|
|
31
|
-
"MV_LM_Opacity",
|
|
32
|
-
"MV_LM_HideLayer",
|
|
33
|
-
"MV_LM_Style",
|
|
34
|
-
"MV_LM_ExternalLayer",
|
|
35
|
-
"MV_LM_StylePreview",
|
|
36
|
-
"MV_T_E_Type",
|
|
37
|
-
"MV_T_E_F_URL",
|
|
38
|
-
"MV_T_E_F_PDF",
|
|
39
|
-
"MV_T_E_SetScale",
|
|
40
|
-
"MV_T_E_ShowLegend",
|
|
41
|
-
"MV_T_InformationMode",
|
|
42
|
-
"MV_T_MeasureControl",
|
|
43
|
-
"MV_T_ZoomWindow",
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"
|
|
47
|
-
"
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
|
|
1
|
+
export default [
|
|
2
|
+
"MapViewer",
|
|
3
|
+
"Tools",
|
|
4
|
+
"DM_SpatialDatabase",
|
|
5
|
+
"DM_GenerationType",
|
|
6
|
+
"MV_MapServer",
|
|
7
|
+
"MV_Tools",
|
|
8
|
+
"MV_MapManagement",
|
|
9
|
+
"DM_SD_PostGIS",
|
|
10
|
+
"DM_GT_Sequence",
|
|
11
|
+
"MV_MM_MultipleMapViewer",
|
|
12
|
+
"MV_MM_MMV_MapSelectorInMapViewer",
|
|
13
|
+
"MV_MM_MMV_MapSelectorInMenuElement",
|
|
14
|
+
"MV_MS_GeoServer",
|
|
15
|
+
"GUI_Lists",
|
|
16
|
+
"GUI_L_FormLink",
|
|
17
|
+
"GUI_L_F_BasicSearch",
|
|
18
|
+
"GUI_L_Filterable",
|
|
19
|
+
"GUI_L_Sortable",
|
|
20
|
+
"GUI_L_LocateInMap",
|
|
21
|
+
"GUI_L_ViewListAsMap",
|
|
22
|
+
"MV_ContextInformation",
|
|
23
|
+
"MV_CI_Scale",
|
|
24
|
+
"MV_CI_Map",
|
|
25
|
+
"MV_CI_CenterCoordinates",
|
|
26
|
+
"MV_CI_Dimensions",
|
|
27
|
+
"MV_DetailOnClick",
|
|
28
|
+
"MV_LayerManagement",
|
|
29
|
+
"MV_LM_CenterViewOnLayer",
|
|
30
|
+
"MV_LM_Order",
|
|
31
|
+
"MV_LM_Opacity",
|
|
32
|
+
"MV_LM_HideLayer",
|
|
33
|
+
"MV_LM_Style",
|
|
34
|
+
"MV_LM_ExternalLayer",
|
|
35
|
+
"MV_LM_StylePreview",
|
|
36
|
+
"MV_T_E_Type",
|
|
37
|
+
"MV_T_E_F_URL",
|
|
38
|
+
"MV_T_E_F_PDF",
|
|
39
|
+
"MV_T_E_SetScale",
|
|
40
|
+
"MV_T_E_ShowLegend",
|
|
41
|
+
"MV_T_InformationMode",
|
|
42
|
+
"MV_T_MeasureControl",
|
|
43
|
+
"MV_T_ZoomWindow",
|
|
44
|
+
"MV_T_ViewMapAsList",
|
|
45
|
+
"DM_DataInput",
|
|
46
|
+
"DM_DI_DataFeeding",
|
|
47
|
+
"DM_DI_DF_Shapefile",
|
|
48
|
+
"T_GIS",
|
|
49
|
+
"T_EntitiesInformation",
|
|
50
|
+
"D_C_Postgres",
|
|
51
|
+
"D_C_Geoserver",
|
|
52
|
+
"D_C_Nginx",
|
|
53
|
+
];
|