-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.27 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.27 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
{
"name": "angular-google-charts",
"description": "A wrapper for the Google Charts library written in Angular",
"version": "0.0.0",
"private": false,
"scripts": {
"ng": "ng",
"start": "ng serve playground -o",
"build": "ng build angular-google-charts --configuration production",
"test": "ng test",
"lint": "ng lint",
"format": "prettier --write .",
"release": "standard-version",
"prepare": "husky"
},
"lint-staged": {
"*.{json,html,ts,js,scss,css,yml,md}": "prettier --write"
},
"standard-version": {
"bumpFiles": "projects/angular-google-charts/package.json",
"packageFiles": "projects/angular-google-charts/package.json"
},
"engines": {
"npm": ">=10.0.0",
"node": ">=22.0.0"
},
"dependencies": {
"@angular/common": "^16.2.12",
"@angular/compiler": "^16.2.12",
"@angular/core": "^16.2.12",
"@angular/platform-browser": "^16.2.12",
"@angular/platform-browser-dynamic": "^16.2.12",
"@angular/router": "^16.2.12",
"core-js": "^3.10.1",
"rxjs": "^7.8.1",
"tslib": "^2.2.0",
"zone.js": "^0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.2.15",
"@angular-eslint/builder": "16.3.1",
"@angular-eslint/eslint-plugin": "16.3.1",
"@angular-eslint/eslint-plugin-template": "16.3.1",
"@angular-eslint/schematics": "16.3.1",
"@angular-eslint/template-parser": "16.3.1",
"@angular/animations": "^16.2.12",
"@angular/cli": "^16.2.15",
"@angular/compiler-cli": "^16.2.12",
"@angular/language-service": "^16.2.12",
"@testing-library/angular": "^14.5.1",
"@testing-library/jasmine-dom": "^1.3.3",
"@types/google.visualization": "0.0.74",
"@types/jasmine": "^5.1.4",
"@types/node": "^16.18.106",
"@types/testing-library__jasmine-dom": "^1.3.4",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "^8.51.0",
"husky": "^9.1.5",
"jasmine-core": "^5.1.2",
"karma": "^6.4.3",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "2.1.0",
"lint-staged": "^15.2.10",
"ng-packagr": "^16.2.3",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"typescript": "~5.1.0"
}
}