-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 5.38 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
{
"name": "mat-datatable",
"version": "17.2.7",
"description": "A component for Angular using Angular Material that implements a table as a simplified replacement for ngx-datatable. The project contains a library component and a demo project.",
"repository": {
"type": "git",
"url": "https://github.com/BePo65/mat-datatable.git"
},
"author": "Bernhard Pottler",
"license": "MIT",
"scripts": {
"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-datatable-lib\"",
"lint:demo": "eslint \"projects/mat-datatable-demo\"",
"lint:scss": "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-datatable-lib",
"test:demo": "ng test mat-datatable-demo",
"test:lib:coverage:ui": "set BROWSERSLIST_IGNORE_OLD_DATA=1 && ng test mat-datatable-lib --code-coverage --watch=false && node tools/open-coverage.mjs",
"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-datatable-lib --configuration development",
"build:lib:prod": "ng build mat-datatable-lib --configuration production",
"build:demo": "ng build mat-datatable-demo --delete-output-path --configuration development",
"build:demo:prod": "ng build mat-datatable-demo --delete-output-path --configuration production",
"build:ghpages": "npm run build:prod && del-cli ghpages && cpy \"dist/mat-datatable-demo/**\" ghpages",
"start": "ng serve --open",
"start:debug": "ng serve --host=127.0.0.1",
"unimported": "npx unimported",
"deprecated": "npx check-is-deprecated -f ./package.json",
"copy-to-lib": "cpy README.md projects/mat-datatable-lib/ && cpy assets/screenshot.jpg projects/mat-datatable-lib/ && cpy CHANGELOG.md projects/mat-datatable-lib/ ",
"init-changelog": "commit-and-tag-version -i CHANGELOG.md --same-file --prerelease pre --first-release --commit-all",
"release": "commit-and-tag-version -i CHANGELOG.md --same-file --commit-all",
"e2e": "start-server-and-test \"ng serve\" http://localhost:4200 \"npm run cypress:demo:run:e2e\"",
"cypress:demo:open": "start-server-and-test \"ng serve\" http://localhost:4200 \"cypress open --project=projects/mat-datatable-demo\"",
"cypress:demo:run:e2e": "start-server-and-test \"ng serve\" http://localhost:4200 \"cypress run --project=projects/mat-datatable-demo\""
},
"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",
"material-icons": "^1.13.12",
"ngx-rerender": "^1.4.0",
"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",
"@angular/platform-browser-dynamic": "^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",
"@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.1",
"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",
"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.11.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-datatable-lib/package.json",
"type": "json"
},
{
"filename": "README.md",
"updater": "tools/npm-scripts/readme-updater.js"
}
],
"scripts": {
"postchangelog": "npm run copy-to-lib && git add projects/mat-datatable-lib/README.md && git add projects/mat-datatable-lib/assets/screenshot.jpg && git add projects/mat-datatable-lib/CHANGELOG.md"
}
}
}