-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1.11 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
{
"name": "leaflet.tilesextentmanager",
"version": "1.1.0",
"description": "",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/adammertel/Leaflet.TilesExtentManager"
},
"keywords": [
"leaflet",
"tiles",
"control"
],
"author": "Adam Mertel | univie",
"license": "ISC",
"devDependencies": {},
"scripts": {
"jshint": "jshint src",
"banners": "run-s banner-src banner-js",
"banner-src": "concat-cli -f banner dist/leaflet.tilesextentmanager.src.js -o dist/leaflet.tilesextentmanager.src.js",
"banner-js": "concat-cli -f banner dist/leaflet.tilesextentmanager.js -o dist/leaflet.tilesextentmanager.js",
"concat": "uglifyjs \"src/*.js\" -o dist/leaflet.tilesextentmanager.src.js -b",
"minify": "uglifyjs dist/leaflet.tilesextentmanager.src.js -o dist/leaflet.tilesextentmanager.js -c -m",
"onchange": "onchange src/**/*.js -- npm run build",
"build": "run-s jshint concat minify banners",
"start": "run-p onchange build"
},
"dependencies": {
"concat-cli": "^4.0.0",
"jshint": "^2.9.5",
"npm-run-all": "^4.1.2",
"onchange": "^6.1.0",
"uglify-js": "^3.3.20"
}
}