forked from makinacorpus/Leaflet.GeometryUtil
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 961 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 961 Bytes
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
{
"name": "leaflet-geometryutil",
"version": "0.8.0",
"description": "Leaflet utility functions on geometries",
"keywords": [
"Leaflet",
"GIS"
],
"repository": {
"type": "git",
"url": "https://github.com/makinacorpus/Leaflet.GeometryUtil.git"
},
"license": "BSD-3-Clause",
"main": "src/leaflet.geometryutil.js",
"scripts": {
"test-leaflet-0.7.7": "npm install leaflet@0.7.7 --no-save && node_modules/.bin/mocha-phantomjs spec/index.html",
"test-leaflet-1.0.0": "npm install leaflet@^1.0.0 --no-save && node_modules/.bin/mocha-phantomjs spec/index.html",
"test": "npm run test-leaflet-0.7.7 && npm run test-leaflet-1.0.0",
"generate-docs": "rm -rf docs; node_modules/.bin/jsdoc -c jsdoc.config -d ./docs/"
},
"dependencies": {
"leaflet": ">=0.7.0"
},
"devDependencies": {
"chai": "3.5.0",
"jsdoc": "3.4.0",
"minami": "^1.1.1",
"mocha": "3.0.2",
"mocha-phantomjs": "4.1.0"
}
}