-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 4.81 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": "0.0.0",
"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 && npm run test:demo -- --watch=false",
"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 --no-watch && node tools/open-coverage.mjs",
"build": "npm run build:lib && npm run build:demo",
"build:lib": "ng build mat-datatable-lib",
"build:demo": "ng build mat-datatable-demo --delete-output-path --configuration production",
"build:ghpages": "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": "check-is-deprecated -f ./package.json",
"init-changelog": "standard-version -i CHANGELOG.md --same-file --prerelease pre --first-release",
"release": "standard-version -i CHANGELOG.md --same-file",
"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": "^15.2.10",
"@angular/cdk": "^15.2.9",
"@angular/common": "^15.2.10",
"@angular/compiler": "^15.2.10",
"@angular/core": "^15.2.10",
"@angular/forms": "^15.2.10",
"@angular/material": "^15.2.9",
"@angular/platform-browser": "^15.2.10",
"@angular/platform-browser-dynamic": "^15.2.10",
"@angular/router": "^15.2.10",
"material-icons": "^1.13.12",
"ngx-rerender": "^1.2.0",
"roboto-fontface": "^0.10.0",
"rxjs": "^7.8.1",
"tslib": "^2.6.2",
"zone.js": "^0.13.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.2.10",
"@angular-eslint/builder": "15.2.1",
"@angular-eslint/eslint-plugin": "15.2.1",
"@angular-eslint/eslint-plugin-template": "15.2.1",
"@angular-eslint/schematics": "15.2.1",
"@angular-eslint/template-parser": "17.2.1",
"@angular/cli": "~15.2.10",
"@angular/compiler-cli": "^15.2.10",
"@commitlint/cli": "^18.6.1",
"@commitlint/config-angular": "^18.6.1",
"@cypress/schematic": "^2.5.1",
"@cypress/webpack-preprocessor": "^6.0.1",
"@types/jasmine": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"cypress": "^13.6.6",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jsdoc": "^48.2.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"husky": "^9.0.11",
"jasmine-core": "^5.1.2",
"karma": "^6.4.3",
"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": "^15.2.2",
"standard-version": "^9.5.0",
"start-server-and-test": "^2.0.3",
"stylelint": "^16.2.1",
"stylelint-config-recommended-scss": "^14.0.0",
"stylelint-config-standard": "^36.0.0",
"typescript": "~4.9.5"
},
"standard-version": {
"packageFiles": [
{
"filename": "package.json",
"type": "json"
}
],
"bumpFiles": [
{
"filename": "package.json",
"type": "json"
},
{
"filename": "projects/mat-datatable-lib/package.json",
"type": "json"
},
{
"filename": "projects/mat-datatable-lib/testing/package.json",
"type": "json"
},
{
"filename": "README.md",
"updater": "tools/npm-scripts/readme-updater.js"
},
{
"filename": "projects/mat-datatable-lib/README.md",
"updater": "tools/npm-scripts/readme-updater.js"
}
]
}
}