forked from sebholstein/angular-google-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 4.13 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
101
102
103
104
105
106
107
{
"name": "@agm/_dev",
"private": true,
"version": "1.0.0-beta.3",
"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"
],
"scripts": {
"clean": "rimraf dist && rimraf .tmp && mkdir dist && mkdir .tmp && rimraf 'packages/**/*.ngfactory.ts'",
"prebuild": "npm run clean",
"build": "npm run lint && npm run scripts && npm run packagejson && npm run copyassets",
"lint": "tslint -c tslint.json 'packages/**/*.ts'",
"packagejson": "node ./scripts/create-package-json.js",
"copyassets": "node ./scripts/copy-package-assets.js",
"scripts": "npm run ngc:esm && npm run bundle",
"bundle": "npm run bundle:umd:core && npm run bundle:umd:jsmarkerclusterer && npm run bundle:umd:snazzy",
"bundle:umd:core": "rollup -c rollup.core.config.js",
"bundle:umd:jsmarkerclusterer": "rollup -c rollup.js-marker-clusterer.config.js",
"bundle:umd:snazzy": "rollup -c rollup.snazzy-info-window.config.js",
"ngc:esm": "ngc -p tsconfig.json",
"clang:format": "clang-format --glob=packages/**/*.ts -i",
"postngc:esm": "mkdirp dist/ && ncp .tmp/esm dist/ && rimraf packages/**/*.ngfactory.ts",
"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": "npm run docs:hugo && npm run apidocs:core && npm run apidocs:snazzy && npm run 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": "^5.0.0 || ^6.0.0",
"@angular/core": "^5.0.0 || ^6.0.0"
},
"devDependencies": {
"@angular/animations": "^6.0.0",
"@angular/common": "^6.0.0",
"@angular/compiler": "^6.0.0",
"@angular/compiler-cli": "^6.0.0",
"@angular/core": "^6.0.0",
"@angular/platform-browser": "^6.0.0",
"@angular/platform-browser-dynamic": "^6.0.0",
"@angular/platform-server": "^6.0.0",
"@angular/tsc-wrapped": "4.4.6",
"@compodoc/compodoc": "^1.0.0-beta.9",
"@ngtools/webpack": "6.0.0",
"@types/jest": "^23.0.0",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^5.0.0",
"clang-format": "1.2.3",
"codelyzer": "^4.3.0",
"conventional-changelog": "^1.1.0",
"copy-webpack-plugin": "^4.0.1",
"copyfiles": "^2.0.0",
"glob": "^7.1.2",
"html-webpack-plugin": "^3.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "3.1.0",
"jest": "^23.1.0",
"jest-zone-patch": "^0.0.8",
"js-marker-clusterer": "^1.0.0",
"karma-chrome-launcher": "2.2.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"reflect-metadata": "^0.1.8",
"remap-istanbul": "^0.11.1",
"rimraf": "2.6.2",
"rollup": "0.58.2",
"rxjs": "^6.1.0",
"snazzy-info-window": "^1.1.1",
"ts-helpers": "^1.1.2",
"ts-jest": "^22.4.6",
"ts-loader": "^4.3.0",
"tslint": "^5.8.0",
"tslint-loader": "^3.4.3",
"typescript": "~2.7.2",
"webpack": "4.8.0",
"zone.js": "^0.8.26"
},
"jspm": {
"jspmNodeConversion": false,
"dependencies": {
"@angular/common": "^5.0.0 || ^6.0.0",
"@angular/core": "^5.0.0 || ^6.0.0"
}
}
}