-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
58 lines (58 loc) · 1.6 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
{
"name": "agm-overlays",
"version": "2.0.0",
"description": "Custom marker overlay for the @agm/core package",
"main": "dist/index",
"scripts": {
"build": "npm-run-all build:dist:js update:dist build:example",
"build:dist:js": "ng-packagr -p package.json",
"update:dist": "node scripts/update-dist-package.js",
"build:example": "ng build example --prod",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run watch",
"watch": "ng serve example --port 4202 --open"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ackerapple/agm-overlays.git"
},
"keywords": [
"agm",
"overlay",
"custom",
"markers",
"google",
"maps"
],
"author": "Acker Apple",
"license": "MIT",
"bugs": {
"url": "https://github.com/ackerapple/agm-overlays/issues"
},
"homepage": "https://github.com/ackerapple/agm-overlays#readme",
"devDependencies": {
"@agm/core": "^1.1.0",
"@agm/js-marker-clusterer": "^1.1.0",
"@angular-devkit/build-angular": "^0.900.1",
"@angular/cli": "^9.0.1",
"@angular/common": "^9.0.0",
"@angular/compiler": "^9.0.0",
"@angular/compiler-cli": "^9.0.0",
"@angular/core": "^9.0.0",
"@angular/platform-browser": "^9.0.0",
"@angular/platform-browser-dynamic": "^9.0.0",
"js-marker-clusterer": "^1.0.0",
"ng-packagr": "^9.0.0",
"npm-run-all": "^4.1.5",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.4",
"typescript": "^3.6.4",
"zone.js": "^0.10.2"
},
"private": true,
"ngPackage": {
"lib": {
"entryFile": "src/index.ts"
}
}
}