forked from yagajs/leaflet-ng2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 3.29 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@yaga/leaflet-ng2",
"version": "1.0.0",
"description": "Angular2 module for Leaflet",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"init": "npm install",
"clean": "rm -Rf coverage browser-test/bundle.js lib node_modules",
"reinit": "npm run clean; npm run init",
"transpile": "ngc",
"lint": "tslint ts/*.ts",
"test": "npm run lint && npm run transpile && istanbul cover _mocha -- -- test/*.js",
"browser-test": "npm run transpile; browserify test/index.js -o browser-test/bundle.js",
"doc": "typedoc --out ./typedoc/ --mode file ts/",
"build-examples": "set -x && npm run transpile && cd examples && tsc; browserify tile-layer-directive/index.js -o tile-layer-directive/bundle.js && browserify map-component/index.js -o map-component/bundle.js && browserify zoom-control-directive/index.js -o zoom-control-directive/bundle.js && browserify scale-control-directive/index.js -o scale-control-directive/bundle.js && browserify attribution-control-directive/index.js -o attribution-control-directive/bundle.js && browserify circle-marker-directive/index.js -o circle-marker-directive/bundle.js && browserify image-overlay-directive/index.js -o image-overlay-directive/bundle.js && browserify icon-directive/index.js -o icon-directive/bundle.js && browserify div-icon-directive/index.js -o div-icon-directive/bundle.js && browserify passau/index.js -o passau/bundle.js && browserify circle-directive/index.js -o circle-directive/bundle.js && browserify marker-directive/index.js -o marker-directive/bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yagajs/leaflet-ng2.git"
},
"keywords": [
"spatial",
"geo",
"leaflet",
"angular",
"directive",
"component",
"angular2",
"webmapping"
],
"author": "YAGA - Development Team<info@yagajs.org>",
"contributors": [
{
"name": "Arne Schubert",
"email": "atd@yagajs.org",
"url": "https://atd.yagajs.org"
},
{
"name": "Stephan Herritsch",
"email": "s.herritsch@yagajs.org",
"url": "https://steve.yagajs.org"
},
{
"name": "Markus Strauss",
"email": "markus@yagajs.org",
"url": "https://markus.yagajs.org"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/yagajs/leaflet-ng2/issues"
},
"homepage": "https://github.com/yagajs/leaflet-ng2#readme",
"devDependencies": {
"@angular/common": "^4.4.1",
"@angular/compiler": "^4.4.1",
"@angular/compiler-cli": "^4.4.1",
"@angular/core": "^4.4.1",
"@angular/forms": "^4.4.1",
"@angular/platform-browser": "^4.4.1",
"@angular/platform-browser-dynamic": "^4.4.1",
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.41",
"bootstrap": "^3.3.7",
"browserify": "^14.4.0",
"chai": "^4.0.2",
"coveralls": "^2.13.0",
"font-awesome": "^4.7.0",
"istanbul": "^0.4.5",
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.1.2",
"reflect-metadata": "^0.1.8",
"rxjs": "^5.4.1",
"tslint": "^5.4.3",
"typedoc": "^0.8.0",
"typescript": "2.5.2",
"zone.js": "^0.7.0"
},
"dependencies": {
"@types/leaflet": "^1.2.0",
"@yaga/generic-geojson": "^1.0.0",
"leaflet": "^1.2.0"
},
"peerDependencies": {
"@angular/core": ">=2.0.0"
}
}