-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (127 loc) · 3.64 KB
/
package.json
File metadata and controls
128 lines (127 loc) · 3.64 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "api-sitna",
"version": "4.9.1",
"description": "API de creación de mapas JavaScript",
"homepage": "https://sitna.navarra.es/api/doc/",
"main": "./index.js",
"types": "./index.d.ts",
"directories": {
"doc": "doc"
},
"scripts": {
"test": "gulp unitTests",
"docs": "jsdoc -c ./batch/jsdoc/conf.json",
"build": "gulp noTests --openssl-legacy-provider",
"start": "webpack serve --open --config ./webpack/webpack.config.debug.js",
"wp_pro": "webpack --config ./webpack/webpack.config.js",
"wp_dbg": "webpack --config ./webpack/webpack.config.debug.js",
"wp_snd": "webpack --config ./webpack/webpack.config.sandbox.js",
"prepublish": "npm run build"
},
"author": "Fernando Lacunza",
"license": "BSD-2-Clause",
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-class-static-block": "^7.21.0",
"@babel/plugin-proposal-logical-assignment-operators": "^7.20.7",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-proposal-private-property-in-object": "^7.21.0",
"@sitna/jsdoc-template": "github:sitna/api-sitna-jsdoc-template",
"babel-loader": "^8.2.5",
"buffer": "^6.0.3",
"chai": "~3.5.0",
"clean-css": "^5.3.2",
"css-loader": "^5.2.7",
"del": "~1.1.1",
"eslint": "^9.17.0",
"fs-extra": "^10.1.0",
"gulp": "^4.0.2",
"gulp-casperjs": "~0.0.6",
"gulp-eslint-new": "^1.7.1",
"gulp-filter": "^6.0.0",
"gulp-jsonlint": "^1.3.2",
"gulp-minify": "^3.1.0",
"gulp-plumber": "^1.1.0",
"gulp-run": "^1.7.1",
"gulp-terser": "^2.1.0",
"html-webpack-plugin": "^4.5.2",
"jsdoc": "^3.6.11",
"mocha": "^9.2.2",
"mochawesome": "^7.1.3",
"ncp": "^2.0.0",
"source-map-loader": "^1.1.3",
"string-replace-loader": "^3.1.0",
"strip-pragma-loader": "^1.0.1",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.3.16",
"url-loader": "^4.1.1",
"webpack": "5.75.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^5.2.3"
},
"dependencies": {
"@cesium/engine": "^18.3.0",
"@cesium/widgets": "^12.3.0",
"@codemirror/lang-html": "^6.4.9",
"@mapbox/shp-write": "^0.4.3",
"@ngageoint/geopackage": "^4.2.3",
"@sitna/shpjs": "^3.4.9",
"@zip.js/zip.js": "2.7.34",
"c3": "^0.4.11",
"cesium": "1.130",
"codemirror": "^6.0.1",
"d3-polygon": "^3.0.1",
"dbf": "^0.2.0",
"draggabilly": "^2.4.1",
"geotiff": "^2.1.3",
"handlebars": "^4.7.7",
"interactjs": "<=1.10.21",
"jsnlog": "~2.17.4",
"jszip": "^3.10.1",
"localforage": "^1.10.0",
"md5": "^2.3.0",
"ol": "10.5.0",
"pdfmake": "^0.2.7",
"proj4": "^2.19.10",
"qrcode": "^1.5.1",
"sortablejs": "^1.15.0",
"through2": "^4.0.2",
"ua-parser-js": "^0.7.32",
"wkx": "^0.5.0"
},
"files": [
"index.js",
"sitna.js",
"TC.js",
"config/*.json",
"css/sitna.css",
"css/sitna.css.map",
"css/print.css",
"css/bootstrap-adapter.css",
"css/fonts/*",
"css/img/*",
"css/ui/*",
"resources/**/*",
"layout/minimal/**/*",
"layout/responsive/**/*",
"lib/geopackagejs/**/*",
"lib/handlebars/**/*",
"lib/jsnlog/**/*",
"lib/ol/**/*",
"lib/polyfill/**/*",
"SITNA/**/*.js",
"TC/**/*.js",
"TC/cesium/layer.json",
"TC/templates/*.mjs",
"TC/tool/*.mjs",
"wmts/**/*",
"workers/*.mjs",
"workers/tc-cb-service-worker.js",
"*.d.ts",
"SITNA/**/*.d.ts",
"TC/**/*.d.ts"
]
}