Files
nodeMap/node_modules/leaflet.smooth_marker_bouncing/package.json

80 lines
2.3 KiB
JSON

{
"name": "leaflet.smooth_marker_bouncing",
"version": "3.1.0",
"type": "module",
"description": "Smooth animation of marker bouncing for Leaflet.",
"author": "Alexei KLENIN <alexei.klenin@gmail.com> (https://github.com/hosuaby)",
"main": "dist/index.esm.js",
"license": "BSD-2-Clause",
"keywords": [
"Leaflet",
"marker",
"bouncing",
"animation",
"smooth"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hosuaby/Leaflet.SmoothMarkerBouncing.git"
},
"bugs": {
"url": "https://github.com/hosuaby/Leaflet.SmoothMarkerBouncing/issues"
},
"homepage": "https://github.com/hosuaby/Leaflet.SmoothMarkerBouncing#readme",
"devDependencies": {
"@babel/cli": "7.24.8",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/preset-env": "7.24.8",
"@babel/register": "7.24.6",
"@istanbuljs/esm-loader-hook": "^0.2.0",
"@types/leaflet": "^1.9.12",
"ava": "6.1.3",
"browser-env": "^3.3.0",
"concurrently": "8.2.2",
"coveralls": "3.1.1",
"font-awesome": "^4.7.0",
"http-server": "14.1.1",
"jquery": "3.7.1",
"leaflet": "1.9.4",
"leaflet.awesome-markers": "^2.0.5",
"leaflet.markercluster": "1.5.3",
"lodash": "4.17.21",
"npm-check": "6.0.1",
"nyc": "17.0.0",
"onchange": "7.1.0",
"rollup": "4.19.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-postcss": "4.0.2",
"rollup-plugin-uglify": "^6.0.4",
"sidebar-v2": "^0.4.0"
},
"scripts": {
"compile": "babel src --out-dir dist",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"build": "rollup -c",
"deps:check": "npm-check || true",
"deps:upgrade": "npm-check -u -E",
"dev": "concurrently \"npm run watch\" \"npm run serve\"",
"release": "npm run test && npm run compile && npm run build",
"serve": "http-server -c-1 --cors -o /debug",
"test": "ava",
"test:ci": "nyc --reporter=html --reporter=text ava",
"watch": "onchange 'src/*' -- npm run build"
},
"ava": {
"files": [
"tests/**/*",
"!tests/helpers/*"
],
"require": [
"./tests/helpers/setup-browser-env.js"
],
"nodeArguments": [
"--es-module-specifier-resolution=node",
"--experimental-loader=./tests/helpers/cssLoader.js",
"--no-warnings"
],
"verbose": true
}
}