-
Notifications
You must be signed in to change notification settings - Fork 57
/
package.json
115 lines (115 loc) · 3.37 KB
/
package.json
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
{
"name": "esri-leaflet-vector",
"description": "Esri vector basemap and vector tile layer plugin for Leaflet.",
"version": "4.2.5",
"author": "John Gravois (https://johngravois.com)",
"contributors": [
"Patrick Arlt <parlt@esri.com> (http://patrickarlt.com)",
"Gavin Rehkemper <grehkemper@esri.com> (https://gavinr.com)",
"Jacob Wasilkowski (https://jwasilgeo.github.io)",
"George Owen (https://geowen.dev/)"
],
"bugs": {
"url": "https://github.com/Esri/esri-leaflet-vector/issues"
},
"peerDependencies": {
"esri-leaflet": ">2.3.0",
"leaflet": "^1.5.0",
"maplibre-gl": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.3.0",
"chai": "4.3.7",
"chokidar-cli": "^3.0.0",
"eslint": "^7.13.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^15.0.1",
"eslint-plugin-chai-friendly": "^0.6.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.1.0",
"esri-leaflet": "^3.0.0",
"gh-release": "^7.0.2",
"http-server": "^14.1.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.2.0",
"karma-edgium-launcher": "github:matracey/karma-edgium-launcher",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "^2.2.5",
"karma-safari-launcher": "~1.0.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.8",
"leaflet": "^1.5.0",
"mkdirp": "^2.1.3",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"rollup": "^2.79.1",
"semistandard": "^16.0.0",
"sinon": "^15.0.1",
"sinon-chai": "3.7.0",
"snazzy": "^9.0.0"
},
"files": [
"src/**/*.js",
"dist/*.js",
"dist/*.js.map",
"dist/*.json",
"index.d.ts"
],
"homepage": "https://github.com/Esri/esri-leaflet-vector#readme",
"jsnext:main": "src/EsriLeafletVector.js",
"jspm": {
"registry": "npm",
"format": "es6",
"main": "src/EsriLeafletVector.js"
},
"keywords": [
"maplibre",
"arcgis",
"leaflet",
"leafletjs",
"maps"
],
"license": "Apache-2.0",
"main": "dist/esri-leaflet-vector-debug.js",
"module": "src/EsriLeafletVector.js",
"browser": "dist/esri-leaflet-vector-debug.js",
"types": "index.d.ts",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/Esri/esri-leaflet-vector.git"
},
"scripts": {
"prebuild": "mkdirp dist",
"build": "rollup -c profiles/debug.js & rollup -c profiles/production.js",
"build-dev": "rollup -c profiles/debug.js",
"fix": "semistandard --fix",
"lint": "eslint src/**/*.js",
"start-watch": "chokidar src -c \"npm run build\"",
"start-watch-dev": "chokidar src -c \"npm run build-dev\"",
"start": "run-p start-watch serve",
"start-dev": "run-p start-watch-dev serve",
"dev": "npm run start-dev",
"serve": "http-server -p 8765 -c-1 -o",
"pretest": "npm run build-dev",
"test": "npm run lint && karma start",
"release": "./scripts/release.sh"
},
"semistandard": {
"globals": [
"expect",
"L",
"XMLHttpRequest",
"sinon",
"xhr",
"proj4"
]
}
}