-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 5.41 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
{
"name": "mat-image-overlay-demo",
"version": "17.0.5",
"description": "A component for Angular using Angular Material that shows images as overlays. The project contains a library component and a demo project.",
"repository": {
"type": "git",
"url": "https://github.com/BePo65/mat-image-overlay.git"
},
"author": "Bernhard Pottler",
"license": "MIT",
"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-image-overlay\"",
"lint:demo": "eslint \"projects/mat-image-overlay-demo\"",
"lint:scss": "npx stylelint \"**/*.scss\"",
"lint:commits": "commitlint --from 81ad0b8fb70526 --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-image-overlay",
"test:demo": "ng test mat-image-overlay-demo",
"test:lib:coverage:ui": "set BROWSERSLIST_IGNORE_OLD_DATA=1 && ng test mat-image-overlay --code-coverage --watch=false && node tools/open-coverage.mjs",
"build": "npm run build:lib && npm run build:demo:prod",
"build:prod": "npm run build:lib:prod && npm run build:demo:prod",
"build:lib": "ng build mat-image-overlay && cpy CHANGELOG.md dist/mat-image-overlay/ && cpy LICENSE dist/mat-image-overlay/",
"build:lib:prod": "ng build mat-image-overlay --configuration production && cpy CHANGELOG.md dist/mat-image-overlay/ && cpy LICENSE dist/mat-image-overlay/",
"build:demo:prod": "ng build mat-image-overlay-demo --delete-output-path --configuration production",
"build:ghpages": "npm run build:lib:prod && npm run build:demo:prod && del-cli ghpages && cpy \"dist/mat-image-overlay-demo/**\" ghpages",
"start": "ng serve --open",
"start:dev": "ng build mat-image-overlay --watch",
"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",
"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-image-overlay-demo\"",
"cypress:demo:run:e2e": "start-server-and-test \"ng serve\" http://localhost:4200 \"cypress run --project=projects/mat-image-overlay-demo\"",
"cypress:lib:open": "cypress open --project=projects/mat-image-overlay",
"cypress:lib:run:ct": "cypress run --project=projects/mat-image-overlay --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",
"material-icons": "^1.13.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.10",
"@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.5.0",
"@commitlint/config-angular": "^19.5.0",
"@cypress/schematic": "^2.5.2",
"@types/jasmine": "^5.1.4",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"commit-and-tag-version": "^12.5.0",
"cpy-cli": "^5.0.0",
"cypress": "^13.15.2",
"cypress-real-events": "^1.13.0",
"del-cli": "^6.0.0",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-cypress": "^3.6.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jasmine": "^4.2.2",
"eslint-plugin-jsdoc": "^50.5.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^9.1.6",
"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",
"ng-packagr": "^17.3.0",
"start-server-and-test": "^2.0.8",
"stylelint": "^16.10.0",
"stylelint-config-recommended-scss": "^14.1.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.4.5"
},
"commit-and-tag-version": {
"packageFiles": [
{
"filename": "package.json",
"type": "json"
}
],
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "projects/mat-image-overlay/package.json",
"type": "json"
},
{
"filename": "projects/mat-image-overlay/testing/package.json",
"type": "json"
},
{
"filename": "README.md",
"updater": "tools/npm-scripts/readme-updater.js"
},
{
"filename": "projects/mat-image-overlay/README.md",
"updater": "tools/npm-scripts/readme-updater.js"
}
]
}
}