-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
35 lines (35 loc) · 1.01 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
{
"name": "ol-popup",
"version": "5.1.1",
"description": "Popup overlay for OpenLayers",
"main": "dist/ol-popup.js",
"repository": {
"type": "git",
"url": "https://github.com/walkermatt/ol-popup.git"
},
"author": "Matt Walker (http://longwayaround.org.uk)",
"contributors": [
"Avi Kelman <patcherton.fixesthings@gmail.com>",
"Sascha Englert <hello@englerts.de>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/walkermatt/ol-popup/issues"
},
"scripts": {
"build": "rollup --config rollup.config.js && tsc --noEmit false --emitDeclarationOnly true && cp src/ol-popup.css dist",
"check": "tsc",
"doc": "documentation readme src/ol-popup.js --section=API",
"types": "tsc --noEmit false --emitDeclarationOnly true"
},
"peerDependencies": {
"ol": ">=5.0.0"
},
"devDependencies": {
"rollup": "^0.41.4",
"rollup-plugin-commonjs": "^7.0.0",
"rollup-plugin-node-resolve": "^2.0.0",
"documentation": "^14.0.2",
"typescript": "^5.1.3"
}
}