forked from rachel-lev/angular-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 3.83 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 3.83 KB
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": "@agm/_dev",
"private": true,
"version": "1.0.0",
"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",
"angular2"
],
"packageScope": "@agm",
"packages": [
"packages/core",
"packages/js-marker-clusterer",
"packages/snazzy-info-window"
],
"scripts": {
"clean": "rimraf dist node_modules/@agm 'packages/**/*.ngfactory.ts' && mkdirp dist",
"prebuild": "yarn clean",
"build": "yarn lint && yarn build:all",
"build:all": "yarn build:core && yarn packagejson && mkdirp node_modules/@agm/core && ncp dist/@agm/core node_modules/@agm/core && yarn build:js-marker-clusterer && yarn build:snazzy-info-window && yarn packagejson",
"build:core": "ng-packagr -p packages/core/package.json",
"build:js-marker-clusterer": "ng-packagr -p packages/js-marker-clusterer/package.json",
"build:snazzy-info-window": "ng-packagr -p packages/snazzy-info-window/package.json",
"lint": "tslint --project tsconfig.json -c tslint.json 'packages/**/*.ts'",
"packagejson": "node ./scripts/update-package-json.js",
"clang:format": "clang-format --glob=packages/**/*.ts -i",
"test": "jest",
"test:watch": "jest --watchAll",
"ci": "yarn build && 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:jsmarkerclusterer",
"apidocs:core": "compodoc -p packages/core/tsconfig.compodoc.json --name @agm/core --output docs/public/api-docs/agm-core/ --hideGenerator --disableCoverage",
"apidocs:snazzy": "compodoc -p packages/snazzy-info-window/tsconfig.compodoc.json --name @agm/snazzy-info-window --output docs/public/api-docs/agm-snazzy-info-window/ --hideGenerator --disableCoverage",
"apidocs:jsmarkerclusterer": "compodoc -p packages/js-marker-clusterer/tsconfig.compodoc.json --name @agm/js-marker-clusterer --output docs/public/api-docs/js-marker-clusterer/ --hideGenerator --disableCoverage"
},
"author": "Sebastian Holstein <info@sebastian-holstein.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SebastianM/angular-google-maps/issues"
},
"homepage": "https://angular-maps.com",
"peerDependencies": {
"@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@angular/core": "^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@angular/animations": "^8.2.1",
"@angular/common": "^8.2.1",
"@angular/compiler": "^8.2.1",
"@angular/compiler-cli": "^8.2.1",
"@angular/core": "^8.2.1",
"@angular/platform-browser": "^8.2.1",
"@angular/platform-browser-dynamic": "^8.2.1",
"@angular/platform-server": "^8.2.1",
"@compodoc/compodoc": "^1.1.10",
"@types/jest": "^23.0.0",
"clang-format": "1.2.3",
"codelyzer": "^5.1.0",
"conventional-changelog": "^1.1.0",
"glob": "^7.1.2",
"jasmine-core": "3.1.0",
"jest": "^24.8.0",
"jest-zone-patch": "0.0.9",
"js-marker-clusterer": "git+https://github.com/rachel-lev/js-marker-clusterer.git",
"karma-chrome-launcher": "2.2.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"ng-packagr": "^5.4.3",
"reflect-metadata": "^0.1.8",
"rimraf": "^2.6.3",
"rxjs": "^6.5.2",
"snazzy-info-window": "^1.1.1",
"ts-jest": "^24.0.2",
"tslib": "^1.9.0",
"tslint": "^5.18.0",
"typescript": "3.4.5",
"zone.js": "~0.9.1"
},
"jspm": {
"jspmNodeConversion": false,
"dependencies": {
"@angular/common": "^6.0.0 || ^7.0.0 || ^8.0.0",
"@angular/core": "^6.0.0 || ^7.0.0 || ^8.0.0"
}
},
"dependencies": {
"yarn": "^1.17.3"
}
}