-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
100 lines (100 loc) · 4.63 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
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@yaga/leaflet-ng2",
"version": "1.0.1",
"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 && mv lib/ts/* lib/ && rm -Rf lib/node_modules lib/ts",
"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 polyline-directive/index.js -o polyline-directive/bundle.js && browserify polygon-directive/index.js -o polygon-directive/bundle.js && browserify rectangle-directive/index.js -o rectangle-directive/bundle.js && browserify tooltip-directive/index.js -o tooltip-directive/bundle.js && browserify popup-directive/index.js -o popup-directive/bundle.js && browserify geojson-directive/index.js -o geojson-directive/bundle.js && browserify tile-layer-directive/index.js -o tile-layer-directive/bundle.js && browserify wms-layer-directive/index.js -o wms-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 layers-control-directive/index.js -o layers-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 && browserify floor-plan/index.js -o floor-plan/bundle.js",
"docker:init": "docker-compose run --rm bob npm run init",
"docker:clean": "docker-compose run --rm bob npm run clean",
"docker:reinit": "docker-compose run --rm bob npm run reinit",
"docker:transpile": "docker-compose run --rm bob npm run transpile",
"docker:lint": "docker-compose run --rm bob npm run lint",
"docker:test": "docker-compose run --rm bob npm run test",
"docker:browser-test": "docker-compose run --rm bob npm run browser-test",
"docker:doc": "docker-compose run --rm bob npm run doc",
"docker:build-examples": "docker-compose run --rm bob npm run build-examples"
},
"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<[email protected]>",
"contributors": [
{
"name": "Arne Schubert",
"email": "[email protected]",
"url": "https://atd.yagajs.org"
},
{
"name": "Stephan Herritsch",
"email": "[email protected]",
"url": "https://steve.yagajs.org"
},
{
"name": "Markus Strauss",
"email": "[email protected]",
"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": "^7.1.0",
"@angular/compiler": "^7.1.0",
"@angular/compiler-cli": "^7.1.0",
"@angular/core": "^7.1.0",
"@angular/forms": "^7.1.0",
"@angular/platform-browser": "^7.1.0",
"@angular/platform-browser-dynamic": "^7.1.0",
"@types/chai": "^4.1.4",
"@types/mocha": "^5.2.5",
"bootstrap": "^4.1.3",
"browserify": "^16.2.2",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"font-awesome": "^4.7.0",
"istanbul": "^0.4.5",
"jquery": "^3.3.1",
"jsdom": "^13.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"reflect-metadata": "^0.1.8",
"rxjs": "^6.2.2",
"rxjs-compat": "^6.2.2",
"tslint": "^5.11.0",
"typedoc": "^0.13.0",
"typescript": "^3.1.6",
"zone.js": "^0.7.0"
},
"dependencies": {
"@types/geojson": "^7946.0.4",
"@types/leaflet": "^1.2.8",
"leaflet": "^1.3.2"
},
"peerDependencies": {
"@angular/core": ">=2.0.0"
}
}