-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·67 lines (67 loc) · 2.1 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "lrm-ign-geoservices",
"version": "0.2.0",
"description": "Support for Ign Geoservices in Leaflet Routing Machine",
"main": "dist/lrm-ign-geoservices.min.js",
"types": "src/index.d.ts",
"scripts": {
"_browserify": "browserify -t [ babelify --presets [ @babel/preset-env ] ] -t browserify-shim -p browserify-derequire src/L.Routing.IgnGeoservices.js -o dist/lrm-ign-geoservices.js",
"_uglify": "uglifyjs dist/lrm-ign-geoservices.js -o dist/lrm-ign-geoservices.min.js",
"bundle": "npm run _browserify && npm run _uglify",
"eslint": "eslint src/*.js",
"validate": "npm run bundle && npm run eslint && npm run test",
"version": "npm run validate",
"test": "karma start karma.conf.js"
},
"keywords": [
"leaflet",
"routing",
"IGN",
"Geoservices"
],
"author": "Thomas Muguet <hi@tmuguet.me>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/tmuguet/lrm-ign-geoservices.git"
},
"homepage": "https://github.com/tmuguet/lrm-ign-geoservices",
"bugs": "https://github.com/tmuguet/lrm-ign-geoservices/issues",
"browserify-shim": {
"leaflet": "global:L",
"@mapbox/corslite": "global:corslite"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/preset-env": "^7.3.1",
"babelify": "^10.0.0",
"browserify": "^16.2.3",
"browserify-derequire": "^1.0.0",
"browserify-shim": "^3.8.14",
"chai": "^4.3.4",
"eslint": "^5.13.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"happen": "^0.3.2",
"jquery": "^3.6.0",
"karma": "^6.3.4",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.1",
"karma-happen": "^0.1.0",
"karma-mocha": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sinon": "^1.0.5",
"leaflet": "^1.4.0",
"leaflet-routing-machine": "^3.2.12",
"mocha": "^9.1.2",
"mocha-sinon": "^2.1.2",
"nyc": "^15.1.0",
"sinon": "^11.1.2",
"uglify-js": "^3.4.9"
},
"dependencies": {
"@mapbox/corslite": "^0.0.7"
}
}