-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
139 lines (139 loc) · 5.88 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "mat-tristate-checkbox",
"version": "17.0.5",
"description": "3-state checkbox for Angular with Material as library component with demo project",
"repository": {
"type": "git",
"url": "https://github.com/BePo65/mat-tristate-checkbox.git"
},
"author": "Bernhard Pottler",
"license": "MIT",
"bugs": {
"url": "https://github.com/BePo65/mat-tristate-checkbox/issues"
},
"homepage": "https://github.com/BePo65/mat-tristate-checkbox",
"scripts": {
"ng": "ng",
"lint": "npm run lint:root && npm run lint:lib && npm run lint:demo && npm run lint:scss",
"lint:root": "eslint --config=./.eslintrc.root.json .",
"lint:lib": "eslint \"projects/mat-tristate-checkbox\"",
"lint:demo": "eslint \"projects/mat-tristate-checkbox-demo\"",
"lint:cli": "eslint .eslintrc.json \"./projects/**/{src,e2e}/**/*.{ts,js,json}\"",
"lint:scss": "stylelint \"**/*.scss\"",
"lint:commits": "commitlint --from 6c5f03e84b9b0 --to HEAD --verbose",
"test": "npm run test:lib -- --watch=false --browsers=ChromeHeadless && npm run test:demo -- --watch=false --browsers=ChromeHeadless",
"test:lib": "ng test mat-tristate-checkbox",
"test:lib:coverage": "set BROWSERSLIST_IGNORE_OLD_DATA=1 && ng test mat-tristate-checkbox --code-coverage --watch=false",
"test:lib:coverage:ui": "set BROWSERSLIST_IGNORE_OLD_DATA=1 && ng test mat-tristate-checkbox --code-coverage --watch=false && node tools/open-coverage.mjs",
"test:demo": "ng test mat-tristate-checkbox-demo",
"build": "npm run build:lib && npm run build:demo",
"build:prod": "npm run build:lib:prod && npm run build:demo:prod",
"build:lib": "ng build mat-tristate-checkbox",
"build:lib:prod": "ng build mat-tristate-checkbox --configuration production && cpy CHANGELOG.md dist/mat-tristate-checkbox/",
"build:demo": "ng build mat-tristate-checkbox-demo --delete-output-path && cpy CHANGELOG.md dist/mat-tristate-checkbox-demo/",
"build:demo:prod": "ng build mat-tristate-checkbox-demo --delete-output-path --configuration production && cpy CHANGELOG.md dist/mat-tristate-checkbox-demo/",
"build:ghpages": "npm run build:lib:prod && npm run build:demo:prod && del-cli ghpages && cpy \"dist/mat-tristate-checkbox-demo/**\" ghpages",
"unimported": "npx unimported",
"deprecated": "npx check-is-deprecated -f ./package.json",
"init-changelog": "commit-and-tag-version -i CHANGELOG.md --same-file --prerelease pre --first-release",
"release": "commit-and-tag-version -i CHANGELOG.md --same-file",
"start": "ng serve --open",
"start:debug": "ng serve --host=127.0.0.1",
"e2e": "npm run cypress:demo:run:e2e",
"ct": "npm run cypress:lib:run:ct",
"cypress:demo:open": "start-server-and-test \"ng serve\" http://localhost:4200 \"cypress open --project=projects/mat-tristate-checkbox-demo\"",
"cypress:demo:run:e2e": "start-server-and-test \"ng serve\" http://localhost:4200 \"cypress run --project=projects/mat-tristate-checkbox-demo\"",
"cypress:lib:open": "cypress open --project=projects/mat-tristate-checkbox",
"cypress:lib:run:ct": "cypress run --project=projects/mat-tristate-checkbox --component"
},
"private": false,
"dependencies": {
"@angular/animations": "^17.3.12",
"@angular/cdk": "^17.3.10",
"@angular/common": "^17.3.12",
"@angular/compiler": "^17.3.12",
"@angular/core": "^17.3.12",
"@angular/forms": "^17.3.12",
"@angular/material": "^17.3.10",
"@angular/platform-browser": "^17.3.12",
"@angular/platform-browser-dynamic": "^17.3.12",
"@angular/router": "^17.3.12",
"roboto-fontface": "^0.10.0",
"rxjs": "^7.8.1",
"tslib": "^2.8.1",
"zone.js": "^0.14.10"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.11",
"@angular-eslint/builder": "^17.5.3",
"@angular-eslint/eslint-plugin": "^17.5.3",
"@angular-eslint/eslint-plugin-template": "^17.5.3",
"@angular-eslint/schematics": "^17.5.3",
"@angular-eslint/template-parser": "^17.5.3",
"@angular/cli": "^17.3.11",
"@angular/compiler-cli": "^17.3.12",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-angular": "^19.6.0",
"@cypress/schematic": "^2.5.2",
"@cypress/webpack-preprocessor": "^6.0.2",
"@types/jasmine": "^5.1.5",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"commit-and-tag-version": "^12.5.0",
"cpy-cli": "^5.0.0",
"cypress": "^13.16.0",
"del-cli": "^6.0.0",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-jsdoc": "^50.6.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^9.1.7",
"jasmine-core": "^5.5.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"material-icons": "^1.13.12",
"ng-packagr": "^17.3.0",
"start-server-and-test": "^2.0.8",
"stylelint": "^16.11.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"terser": "^5.37.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"commit-and-tag-version": {
"packageFiles": [
{
"filename": "package.json",
"type": "json"
}
],
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "projects/mat-tristate-checkbox/package.json",
"type": "json"
},
{
"filename": "README.md",
"updater": "tools/npm-scripts/readme-updater.js"
},
{
"filename": "projects/mat-tristate-checkbox/README.md",
"updater": "tools/npm-scripts/readme-updater.js"
}
]
}
}