X-Git-Url: https://git.openstreetmap.org/nominatim-ui.git/blobdiff_plain/200817fd74b0e449eabf883f0bde24acfe2b2bf7..b7666a2992cefb982249a19c68467a14f36cc1bb:/package.json diff --git a/package.json b/package.json index 0592254..d0d16be 100644 --- a/package.json +++ b/package.json @@ -1,21 +1,43 @@ { "name": "nominatim-ui", - "version": "1.0.0", - "description": "", - "main": "index.js", + "description": "Debug web interface for Nominatim geocoder", + "version": "3.3.1", + "license": "GPL-2.0", "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" + "build": "rollup -c", + "dev": "rollup -c -w", + "lint": "eslint --quiet *.js src/ test/", + "lint:fix": "eslint --fix *.js src/ test/", + "test": "rollup -c && mocha --recursive test/", + "start": "static-server dist" }, - "author": "", - "license": "GPL-3.0", "devDependencies": { - "grunt": "^1.0.2", - "bower": "^1.8", - "jquery": "3.4.0", - "leaflet": "1.3.1", - "leaflet-minimap": "3.6.1", - "handlebars": "4.1.2", - "bootstrap": "3.3.5", - "@ungap/url-search-params": "0.1.4" - } + "@rollup/plugin-commonjs": "^25.0", + "@rollup/plugin-node-resolve": "^15.0", + "eslint-plugin-mocha": "^10.0", + "fs-extra": "^11.0.0", + "http": "^0.0.1-security", + "http-proxy": "^1.18.1", + "mocha": "^10.0", + "puppeteer": "^21.0", + "rollup": "^4.9.0", + "rollup-plugin-css-only": "^4.3.0", + "rollup-plugin-livereload": "^2.0.0", + "rollup-plugin-svelte": "^7.0.0", + "rollup-plugin-terser": "^7.0.0", + "static-server": "^2.2.1", + "svelte": "^4.0" + }, + "dependencies": { + "bootstrap": "^5.0.0", + "escape-html": "^1.0.3", + "eslint": "^8.0", + "eslint-config-airbnb-base": "^15.0", + "eslint-plugin-import": "^2.22.1", + "eslint-plugin-svelte": "^2.13", + "leaflet": "1.9.4", + "leaflet-minimap": "^3.6.1", + "timeago.js": "^4.0.2" + }, + "type": "module" }