-
-
Notifications
You must be signed in to change notification settings - Fork 50
/
package.json
102 lines (102 loc) · 3.12 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
{
"name": "material-community-components",
"version": "13.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve demo",
"build": "ng build material-community-components --configuration production",
"copy:scss": "cp ./projects/material-community-components/_theming.scss ./dist/material-community-components/_theming.scss",
"docs": "ng deploy --base-href=https://tiaguinho.github.io/material-community-components/",
"test": "ng test material-community-components",
"lint": "ng lint",
"deploy:gh-pages": "ng run demo:deploy",
"e2e": "ng e2e",
"packagr": "yarn build && yarn copy:scss && cp README.md dist/material-community-components",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"prepare": "husky install"
},
"private": true,
"peerDependencies": {
"core-js": "^3.6.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.0.6",
"@angular-devkit/core": "^14.0.6",
"@angular/animations": "^14.0.6",
"@angular/cdk": "^14.0.5",
"@angular/cli": "^14.0.6",
"@angular/common": "^14.0.6",
"@angular/compiler": "^14.0.6",
"@angular/compiler-cli": "^14.0.6",
"@angular/core": "^14.0.6",
"@angular/forms": "^14.0.6",
"@angular/language-service": "^14.0.6",
"@angular/material": "^14.0.5",
"@angular/platform-browser": "^14.0.6",
"@angular/platform-browser-dynamic": "^14.0.6",
"@angular/router": "^14.0.6",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^14.14.2",
"@types/tinycolor2": "^1.4.2",
"angular-cli-ghpages": "^1.0.0-rc.2",
"codelyzer": "^6.0.0",
"conventional-changelog": "^3.1.23",
"core-js": "^3.6.4",
"coveralls": "^3.1.0",
"cz-conventional-changelog": "^3.3.0",
"husky": "^6.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ng-packagr": "^14.0.3",
"protractor": "~7.0.0",
"rxjs": "^6.6.3",
"ts-node": "~9.0.0",
"tslint": "~6.1.3",
"typescript": "^4.7.4",
"uglify-es": "^3.3.9",
"validate-commit-msg": "^2.14.0",
"zone.js": "~0.11.4"
},
"config": {
"validate-commit-msg": {
"types": [
"feat",
"fix",
"docs",
"style",
"refactor",
"perf",
"test",
"chore",
"revert",
"release",
"ci",
"build"
],
"warnOnFail": false,
"maxSubjectLength": 100,
"subjectPattern": ".+",
"subjectPatternErrorMsg": "subject does not match subject pattern!",
"helpMessage": ""
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"@thebespokepixel/es-tinycolor": "^2.1.1",
"tslib": "^2.3.0"
},
"resolutions": {
"**/**/minimist": ">=0.2.1 <1.0.0 || >=1.2.3",
"**/**/yargs-parser": ">=13.1.2 <14.0.0 || >=15.0.1 <16.0.0 || >=18.1.2",
"**/**/http-proxy": ">=1.18.1"
}
}