forked from FERNman/angular-google-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"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"
},
"workspaces": [
"apps/*",
"libs/*"
],
"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": {
"npm": ">=7.0.0"
},
"devDependencies": {
"@angular/core": "^14.0.3",
"@angular/cli": "^14.0.3",
"@angular/compiler": "^14.0.3",
"@angular/compiler-cli": "^14.0.3",
"@angular/language-service": "^14.0.3",
"@angular-devkit/build-angular": "^14.0.3",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1"
}
}