mirror of
https://github.com/jlengrand/leaflet-geosearch.git
synced 2026-03-10 08:31:26 +00:00
108 lines
3.1 KiB
JSON
108 lines
3.1 KiB
JSON
{
|
|
"name": "leaflet-geosearch",
|
|
"version": "2.1.0",
|
|
"publishConfig": {
|
|
"tag": "latest"
|
|
},
|
|
"description": "Adds support for address lookup (a.k.a. geocoding / geoseaching) to Leaflet.",
|
|
"main": "lib/index.js",
|
|
"scripts": {
|
|
"build:commonjs": "babel src --out-dir lib --ignore *.spec.js",
|
|
"build:umd": "cross-env NODE_ENV=development webpack",
|
|
"build:umd:min": "cross-env NODE_ENV=production webpack",
|
|
"build:watch": "npm run build:umd -- --watch",
|
|
"build": "npm run clean && npm run build:commonjs && npm run build:umd && npm run build:umd:min && npm run build:docs",
|
|
"build:docs": "cross-env NODE_ENV=production webpack --config webpack.docs.config.babel.js",
|
|
"clean": "rimraf lib dist",
|
|
"lint": "esw src webpack.config --color",
|
|
"lint:fix": "npm run lint -- --fix",
|
|
"lint:watch": "npm run lint -- --watch",
|
|
"prepublish": "npm run lint && npm run test && npm run build",
|
|
"test": "ava",
|
|
"test:watch": "ava -w",
|
|
"test:cover": "nyc ava",
|
|
"test:report": "nyc report --reporter html",
|
|
"start": "webpack-dev-server"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"dist",
|
|
"assets"
|
|
],
|
|
"directories": {
|
|
"example": "example"
|
|
},
|
|
"keywords": [
|
|
"geolocation",
|
|
"geocoding",
|
|
"plugins",
|
|
"leaflet",
|
|
"geo",
|
|
"map"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/smeijer/L.GeoSearch.git"
|
|
},
|
|
"author": "Stephan Meijer <stephan@meijer.ws>",
|
|
"bugs": {
|
|
"url": "https://github.com/smeijer/L.GeoSearch/issues"
|
|
},
|
|
"homepage": "https://github.com/smeijer/L.GeoSearch#readme",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"ava": "^0.17.0",
|
|
"babel-cli": "^6.18.0",
|
|
"babel-core": "^6.21.0",
|
|
"babel-eslint": "^7.1.1",
|
|
"babel-loader": "^6.2.10",
|
|
"babel-plugin-transform-class-properties": "^6.19.0",
|
|
"babel-plugin-transform-export-extensions": "^6.8.0",
|
|
"babel-plugin-transform-object-rest-spread": "^6.20.2",
|
|
"babel-plugin-transform-react-jsx": "^6.8.0",
|
|
"babel-preset-es2015": "^6.18.0",
|
|
"babel-preset-power-assert": "^1.0.0",
|
|
"browser-env": "^2.0.19",
|
|
"cross-env": "^3.1.3",
|
|
"css-loader": "^0.26.1",
|
|
"dotenv": "^2.0.0",
|
|
"eslint": "^3.12.2",
|
|
"eslint-config-airbnb": "^13.0.0",
|
|
"eslint-plugin-import": "^2.2.0",
|
|
"eslint-plugin-jsx-a11y": "^2.2.3",
|
|
"eslint-plugin-react": "^6.8.0",
|
|
"eslint-watch": "^2.1.14",
|
|
"extract-text-webpack-plugin": "^1.0.1",
|
|
"fast-async": "^6.1.2",
|
|
"leaflet": "^1.0.2",
|
|
"lodash.merge": "^4.6.0",
|
|
"microlight": "0.0.7",
|
|
"node-fetch": "^1.6.3",
|
|
"npm": "^4.0.5",
|
|
"power-assert": "^1.4.2",
|
|
"preact": "^7.1.0",
|
|
"raw-loader": "^0.5.1",
|
|
"rimraf": "^2.5.4",
|
|
"style-loader": "^0.13.1",
|
|
"testdouble": "^1.10.1",
|
|
"webpack": "^1.14.0",
|
|
"webpack-dev-server": "^1.16.2",
|
|
"nodent-runtime": "^3.0.4"
|
|
},
|
|
"dependencies": {
|
|
"lodash.debounce": "^4.0.8"
|
|
},
|
|
"ava": {
|
|
"files": [
|
|
"./src/**/__tests__/**.spec.js"
|
|
],
|
|
"require": [
|
|
"nodent-runtime",
|
|
"dotenv/config",
|
|
"babel-core/register",
|
|
"./test/browserEnv"
|
|
],
|
|
"babel": "inherit"
|
|
}
|
|
}
|