-
Notifications
You must be signed in to change notification settings - Fork 109
/
package.json
61 lines (61 loc) · 1.79 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
{
"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 angular-google-charts --coverage",
"lint": "ng lint playground",
"release": "standard-version",
"prepare": "husky"
},
"lint-staged": {
"*.{json,html,ts,js,scss,css,yml,md}": "prettier --write"
},
"jest-junit": {
"outputDirectory": "test-results"
},
"standard-version": {
"bumpFiles": "libs/angular-google-charts/package.json",
"packageFiles": "libs/angular-google-charts/package.json"
},
"engines": {
"npm": ">=8.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-builders/jest": "^16.0.1",
"@angular-devkit/build-angular": "^16.2.15",
"@angular/cli": "^16.2.15",
"@angular/compiler-cli": "^16.2.12",
"@angular/language-service": "^16.2.12",
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@types/google.visualization": "0.0.74",
"@types/jest": "^29.5.12",
"@types/node": "^16.18.106",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"lint-staged": "^15.2.10",
"ng-packagr": "^16.2.3",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"ts-jest": "^29.2.5",
"typescript": "^5.1.6"
}
}