-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
39 lines (39 loc) · 1.19 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
{
"name": "leaflet-defaulticon-compatibility",
"version": "0.1.2",
"description": "Retrieve all Leaflet Default Icon options from CSS, in particular all icon images URL's, to improve compatibility with bundlers and frameworks that modify URL's in CSS.",
"main": "dist/leaflet-defaulticon-compatibility.js",
"module": "src/Icon.Default.compatibility.js",
"jsnext:main": "src/Icon.Default.compatibility.js",
"style": "dist/leaflet-defaulticon-compatibility.css",
"files": [
"dist/**/*",
"src/Icon.Default.compatibility.js"
],
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"webpack": "cd webpack-demo && npm run webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ghybs/leaflet-defaulticon-compatibility.git"
},
"keywords": [
"leaflet",
"plugin",
"icon",
"compatibility"
],
"author": "Boris Seang",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/ghybs/leaflet-defaulticon-compatibility/issues"
},
"homepage": "https://github.com/ghybs/leaflet-defaulticon-compatibility#readme",
"devDependencies": {
"rollup": "^0.60.7",
"rollup-plugin-copy": "^0.2.3",
"rollup-plugin-uglify": "^4.0.0"
}
}