forked from ng-maps/ng-maps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.77 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "ng-maps",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:google": "ng serve sample",
"start:here": "ng serve sample-here",
"build": "ng build",
"build:core": "ng build core",
"build:drawing-layer": "ng build drawing-layer",
"build:google": "ng build google",
"build:here": "ng build here",
"build:marker-clusterer": "ng build marker-clusterer",
"build:places": "ng build places",
"build:snazzy-info-window": "ng build snazzy-info-window",
"build:all": "npm run build:core && npm run build:google && npm run build:here && npm run build:drawing-layer && npm run build:marker-clusterer && npm run build:places && npm run build:snazzy-info-window",
"test": "ng test",
"test:ci": "ng test core -c ci",
"test:drawing-layer": "ng test drawing-layer",
"test:ci:drawing-layer": "ng test drawing-layer -c ci",
"test:google": "ng test google",
"test:ci:google": "ng test google -c ci",
"test:here": "ng test here",
"test:ci:here": "ng test here -c ci",
"test:marker-clusterer": "ng test marker-clusterer",
"test:ci:marker-clusterer": "ng test marker-clusterer -c ci",
"test:places": "ng test places",
"test:ci:places": "ng test places -c ci",
"test:snazzy-info-window": "ng test snazzy-info-window",
"test:ci:snazzy-info-window": "ng test snazzy-info-window -c ci",
"test:all-ci": "npm run test:ci && npm run test:ci:drawing-layer && npm run test:ci:marker-clusterer",
"lint": "ng lint",
"e2e": "ng e2e",
"doc:core": "cd projects/core && npx compodoc",
"doc:google": "cd projects/google && npx compodoc",
"doc:here": "cd projects/here && npx compodoc",
"doc:drawing-layer": "cd projects/drawing-layer && npx compodoc",
"doc:marker-clusterer": "cd projects/marker-clusterer && npx compodoc",
"doc:places": "cd projects/places && npx compodoc",
"doc:all": "npm run doc:core && npm run doc:google && npm run doc:here && npm run doc:drawing-layer && npm run doc:marker-clusterer && npm run doc:places"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"lint-staged": {
"projects/core/**/*.ts": [
"ng-lint-staged lint core --force --fix --",
"git add"
],
"projects/google/**/*.ts": [
"ng-lint-staged lint google --force --fix --",
"git add"
],
"projects/here/**/*.ts": [
"ng-lint-staged lint here --force --fix --",
"git add"
],
"projects/marker-clusterer/**/*.ts": [
"ng-lint-staged lint marker-clusterer --force --fix --",
"git add"
],
"projects/places/**/*.ts": [
"ng-lint-staged lint places --force --fix --",
"git add"
]
},
"private": true,
"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",
"@google/markerclusterer": "^2.0.9",
"lodash-es": "^4.17.21",
"ngx-script-loader": "^1.3.0",
"rxjs": "^6.6.7",
"snazzy-info-window": "^1.1.1",
"tslib": "^2.3.1",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.0",
"@angular-eslint/builder": "13.2.1",
"@angular-eslint/eslint-plugin": "13.2.1",
"@angular-eslint/eslint-plugin-template": "13.2.1",
"@angular-eslint/schematics": "13.2.1",
"@angular-eslint/template-parser": "13.2.1",
"@angular/cli": "^14.0.0",
"@angular/compiler-cli": "^14.0.0",
"@angular/language-service": "^14.0.0",
"@compodoc/compodoc": "^1.1.11",
"@ngneat/spectator": "^6.1.3",
"@types/googlemaps": "^3.43.2",
"@types/heremaps": "github:ng-maps/heremaps-typings",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.8",
"@types/lodash-es": "^4.17.4",
"@types/markerclustererplus": "^2.1.33",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"eslint": "^8.2.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "latest",
"eslint-plugin-prefer-arrow": "latest",
"eslint-plugin-react": "latest",
"husky": "^4.3.8",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "^6.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.4",
"lint-staged": "^9.2.1",
"ng-lint-staged": "^0.1.6",
"ng-mocks": "^13.5.2",
"ng-packagr": "^14.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"protractor": "~7.0.0",
"ts-node": "^8.5.4",
"typescript": "~4.7.3"
}
}