-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.89 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
{
"name": "ngx-google-maps-places",
"description": "Wrapper for new Google Maps Places API, making it easier to integrate Google Places functionality into Angular applications.",
"version": "19.0.0",
"homepage": "https://lekhmanrus.github.io/ngx-google-maps-places/",
"bugs": {
"url": "https://github.com/lekhmanrus/ngx-google-maps-places/issues",
"email": "[email protected]"
},
"author": "Ruslan Lekhman <[email protected]> (https://github.com/lekhmanrus)",
"contributors": [
"Ruslan Lekhman <[email protected]> (https://github.com/lekhmanrus)"
],
"repository": {
"type": "git",
"url": "https://github.com/lekhmanrus/ngx-google-maps-places"
},
"license": "MIT",
"readme": "https://github.com/lekhmanrus/ngx-google-maps-places/blob/main/README.md",
"private": false,
"keywords": [
"angular",
"google maps",
"googlemaps",
"places api",
"material",
"autocomplete",
"geolocation",
"geocoding",
"address components",
"place details",
"maps integration",
"location services"
],
"scripts": {
"postinstall": "is-ci || husky",
"ng": "ng",
"start": "ng serve",
"build": "run-s build:api build:autocomplete build:app",
"build:api": "ng build ngx-google-maps-places-api",
"build:autocomplete": "ng build ngx-google-maps-places-autocomplete",
"build:app": "ng build ngx-google-maps-places-app --base-href=/ngx-google-maps-places/",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"release": "standard-version",
"commitlint": "commitlint"
},
"dependencies": {
"@angular/animations": "^19.0.0",
"@angular/cdk": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/google-maps": "^19.0.0",
"@angular/material": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"rxjs": "~7.8.1",
"tslib": "^2.8.1",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.1",
"@angular/cli": "^19.0.1",
"@angular/compiler-cli": "^19.0.0",
"@commitlint/cli": ">=19.6.0",
"@commitlint/config-conventional": ">=19.6.0",
"@commitlint/format": ">=19.5.0",
"@types/google.maps": "^3.58.1",
"@types/jest": "^29.5.14",
"angular-eslint": "19.0.0-alpha.1",
"conventional-changelog-angular": ">=8.0.0",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"is-ci": ">=3.0.1",
"jest": "^29.7.0",
"jest-auto-spies": "^3.0.0",
"jest-environment-jsdom": "^29.7.0",
"ng-packagr": "^19.0.0",
"npm-run-all": "^4.1.5",
"standard-version": ">=9.5.0",
"typescript": "~5.5.2",
"typescript-eslint": "8.15.1-alpha.2",
"validate-branch-name": "^1.3.1"
}
}