forked from smeijer/leaflet-geosearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.2 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.2 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
{
"name": "leaflet-geosearch",
"version": "2.6.0",
"publishConfig": {
"tag": "latest"
},
"description": "Adds support for address lookup (a.k.a. geocoding / geoseaching) to Leaflet.",
"main": "lib/index.js",
"module": "src/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": [
"src",
"lib",
"dist",
"assets"
],
"directories": {
"example": "example"
},
"keywords": [
"geolocation",
"geocoding",
"plugins",
"leaflet",
"geo",
"map"
],
"repository": {
"type": "git",
"url": "git+https://github.com/smeijer/leaflet-geosearch.git"
},
"author": "Stephan Meijer <stephan@meijer.ws>",
"bugs": {
"url": "https://github.com/smeijer/leaflet-geosearch/issues"
},
"homepage": "https://github.com/smeijer/leaflet-geosearch#readme",
"license": "MIT",
"devDependencies": {
"ava": "^0.25.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-polyfill": "^6.23.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": "^8.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",
"whatwg-fetch": "^2.0.3"
},
"dependencies": {
"lodash.debounce": "^4.0.8",
"nodent-runtime": "^3.0.4"
},
"ava": {
"files": [
"./src/**/__tests__/**.spec.js"
],
"require": [
"nodent-runtime",
"dotenv/config",
"babel-core/register",
"./test/browserEnv"
],
"babel": "inherit"
}
}