-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
51 lines (51 loc) · 1.31 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
{
"name": "leaflet-styleeditor",
"author": "Dennis Wilhelm",
"version": "0.1.21",
"description": "Edit the style of features drawn within Leaflet.",
"license": "MIT",
"main": "src/javascript/Leaflet.StyleEditor.js",
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"babel-loader": "^8.0.6",
"css-loader": "^3.6.0",
"es-check": "^5.1.2",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"lint": "^1.1.2",
"mini-css-extract-plugin": "^0.8.0",
"style-loader": "^1.3.0",
"unminified-webpack-plugin": "^2.0.0",
"url-loader": "^2.2.0",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"repository": {
"type": "git",
"url": "https://github.com/dwilhelm89/Leaflet.StyleEditor"
},
"keywords": [
"map",
"gis",
"leaflet",
"extension",
"style",
"editor",
"StyleEditor"
],
"dependencies": {
"leaflet": "^1.7.1"
},
"scripts": {
"lint": "./node_modules/.bin/eslint . ./**/*.js",
"es-check": "./node_modules/.bin/es-check es5 ./dist/javascript/Leaflet.StyleEditor.min.js"
},
"publishConfig": {
"access": "public"
}
}