This repository has been archived by the owner on Feb 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
45 lines (45 loc) · 1.46 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
{
"name": "leaflet-graphicscale",
"version": "0.0.4",
"description": "A graphic scale for Leaflet.js that looks sharp",
"main": "./src/Leaflet.GraphicScale.js",
"scripts": {
"test": "mocha",
"build:js": "uglifyjs src/Leaflet.GraphicScale.js > dist/Leaflet.GraphicScale.min.js",
"build:css": "sass --style compressed src/Leaflet.GraphicScale.scss > dist/Leaflet.GraphicScale.min.css",
"build": "npm run build:css && npm run build:js",
"dev:livereload": "live-reload --port 9991 ./demo ./dist",
"dev:watch": "onchange 'src/**/*.*' -- npm run build",
"dev:serve": "http-server -p 9990 .",
"dev": "npm run build && parallelshell 'npm run dev:livereload -s' 'npm run dev:serve -s' 'npm run dev:watch -s'"
},
"repository": {
"type": "git",
"url": "https://github.com/nerik/leaflet-graphicscale.git"
},
"keywords": [
"graphicscale",
"leaflet",
"scale",
"kilometers",
"km"
],
"author": "Erik Escoffier <[email protected]> (https://github.com/nerik/)",
"license": "unlicense",
"bugs": {
"url": "https://github.com/nerik/leaflet-graphicscale/issues"
},
"homepage": "https://github.com/nerik/leaflet-graphicscale",
"devDependencies": {
"chai": "^2.3.0",
"http-server": "^0.8.0",
"jsdom": "^5.3.0",
"leaflet": "^0.7.3",
"live-reload": "^1.1.0",
"mocha": "^2.2.4",
"mocha-jsdom": "^0.3.0",
"onchange": "^1.1.0",
"parallelshell": "^1.1.1",
"uglify-js": "^2.4.20"
}
}