-
Notifications
You must be signed in to change notification settings - Fork 817
/
package.json
76 lines (76 loc) · 3.01 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
{
"private": true,
"version": "3.0.0-beta.1",
"description": "Angular components for Google Maps",
"repository": {
"type": "git",
"url": "https://github.com/SebastianM/angular-google-maps.git"
},
"keywords": [
"angular",
"ng",
"google-maps",
"maps",
"google",
"gmaps"
],
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf dist node_modules/@agm",
"prebuild": "yarn clean",
"build": "ng build core && ng build markerclusterer && ng build snazzy-info-window && ng build drawing",
"build:prod": "ng build core --configuration production && ng build markerclusterer --configuration production && ng build snazzy-info-window --configuration production && ng build drawing --configuration production",
"lint": "ng lint",
"test": "jest",
"test:watch": "jest --watchAll",
"ci": "yarn build:prod && yarn test --coverage",
"docs:clean": "rimraf docs/public",
"docs:hugo": "cd docs && hugo",
"docs:injectga": "node scripts/inject-google-analytics.js",
"docs": "yarn docs:hugo && yarn apidocs:core && yarn apidocs:snazzy && yarn apidocs:markerclusterer && yarn apidocs:drawing",
"apidocs:core": "compodoc -p packages/core/tsconfig.lib.json --name @agm/core --output docs/public/api-docs/agm-core/ --hideGenerator --disableCoverage",
"apidocs:snazzy": "compodoc -p packages/snazzy-info-window/tsconfig.lib.json --name @agm/snazzy-info-window --output docs/public/api-docs/agm-snazzy-info-window/ --hideGenerator --disableCoverage",
"apidocs:markerclusterer": "compodoc -p packages/markerclusterer/tsconfig.lib.json --name @agm/markerclusterer --output docs/public/api-docs/markerclusterer/ --hideGenerator --disableCoverage",
"apidocs:drawing": "compodoc -p packages/drawing/tsconfig.lib.json --name @agm/drawing --output docs/public/api-docs/drawing/ --hideGenerator --disableCoverage"
},
"author": "Sebastian Holstein <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SebastianM/angular-google-maps/issues"
},
"homepage": "https://angular-maps.com",
"dependencies": {
"@angular/animations": "^14.0.0",
"@angular/common": "^14.0.0",
"@angular/compiler": "^14.0.0",
"@angular/core": "^14.0.0",
"@angular/forms": "^14.0.0",
"@angular/platform-browser": "^14.0.0",
"@angular/platform-browser-dynamic": "^14.0.0",
"@angular/router": "^14.0.0",
"rxjs": "~6.6.0",
"tslib": "^2.4.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.0",
"@angular/cli": "^14.0.0",
"@angular/compiler-cli": "^14.0.0",
"@compodoc/compodoc": "^1.1.10",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.22",
"codelyzer": "^6.0.0",
"conventional-changelog": "^3.1.21",
"jest": "^26.1.0",
"jest-preset-angular": "^8.2.1",
"ng-packagr": "^14.0.0",
"protractor": "~7.0.0",
"rimraf": "^3.0.2",
"ts-node": "~8.10.2",
"tslint": "~6.1.0",
"typescript": "~4.6.4",
"yarn": "^1.22.4"
}
}