forked from FERNman/angular-google-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.13 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.13 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
{
"name": "angular-google-charts",
"description": "A wrapper for the Google Charts library written in Angular",
"version": "0.0.0",
"private": true,
"scripts": {
"ng": "ng",
"start": "ng serve -o",
"build": "ng build --prod angular-google-charts",
"test": "ng test angular-google-charts",
"lint": "ng lint",
"release": "standard-version",
"postinstall": "ngcc es2015 browser module main --first-only --create-ivy-entry-points"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.ts": "tslint --fix",
"*.{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": {
"node": ">=12.0.0"
},
"dependencies": {
"@angular/common": "^11.2.9",
"@angular/compiler": "^11.2.9",
"@angular/core": "^11.2.9",
"@angular/platform-browser": "^11.2.9",
"@angular/platform-browser-dynamic": "^11.2.9",
"@angular/router": "^11.2.9",
"core-js": "^3.10.1",
"rxjs": "^6.6.7",
"tslib": "^2.2.0",
"zone.js": "^0.11.4"
},
"devDependencies": {
"@angular-builders/jest": "^11.1.1",
"@angular-devkit/build-angular": "^0.1100.7",
"@angular/cli": "^11.2.8",
"@angular/compiler-cli": "^11.2.9",
"@angular/language-service": "^11.2.9",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/google.visualization": "0.0.58",
"@types/jest": "^26.0.22",
"@types/node": "^12.20.7",
"codelyzer": "^6.0.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"jest-junit": "^11.1.0",
"jest-preset-angular": "^8.4.0",
"lint-staged": "^10.5.4",
"ng-packagr": "^11.2.4",
"prettier": "^2.2.1",
"standard-version": "^9.2.0",
"ts-jest": "^26.5.4",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"tslint-angular": "^3.0.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "~4.1.5"
}
}