forked from w8r/wms-capabilities
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.68 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
{
"name": "wms-capabilities",
"version": "0.3.0",
"description": "WMS service Capabilities > JSON, based on openlayers ",
"main": "index.js",
"bin": {
"wmscapabilities": "bin/wmscapabilities"
},
"scripts": {
"test": "tape test/index.js | tap-spec",
"start": "npm run watch-js & npm run watch-css & serve -p 3001",
"watch-css": "catw -c 'lessc -' 'example/less/*.less' -o example/css/style.css -v",
"watch-js": "watchify -v -d example/js/app.js -u leaflet -o example/js/bundle.js",
"build-less": "lessc example/less/style.less > example/css/style.css",
"build-css": "npm run build-less && npm run compress-less",
"build-js": "browserify -s WMSCapabilities index.js -o dist/wms-capabilities.js",
"compress": "npm run compress-js",
"compress-js": "browserify -s WMSCapabilities index.js | uglifyjs --comments -m -c drop_console=true,warnings=false > dist/wms-capabilities.min.js",
"build": "npm run build-js && npm run compress && npm run build-css"
},
"repository": {
"type": "git",
"url": "https://github.com/w8r/wms-capabilities.git"
},
"devDependencies": {
"catw": "^0.2.0",
"less": "^2.1.2",
"reqwest": "^1.1.5",
"serve": "^1.4.0",
"spin.js": "^2.0.2",
"tap-spec": "^4.0.0",
"tape": "^4.0.0",
"testling": "^1.7.1",
"watchify": "^2.2.1"
},
"dependencies": {
"minimist": "^1.2.0",
"xmldom": "^0.1.19"
},
"keywords": [
"gis",
"wms",
"getcapabilities",
"xml",
"json"
],
"author": "Alexander Milevski <info@w8r.name>",
"license": "MIT",
"bugs": {
"url": "https://github.com/w8r/wms-capabilities/issues"
},
"homepage": "https://github.com/w8r/wms-capabilities"
}