-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 3.23 KB
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
{
"name": "angular-material-css-vars",
"version": "11.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"ubl": "npx browserslist@latest --update-db",
"demo": "run-s demo.build demo.gh-pages",
"demo.build": "ng build --aot --configuration production --base-href='./'",
"demo.gh-pages": "gh-pages -d dist/angular-material-css-vars/browser",
"lib": "run-s lib.build copy",
"lib.build": "ng build material-css-vars",
"copy": "run-s copy.licence copy.readme",
"copy.licence": "copyfiles ./LICENSE ./dist/material-css-vars",
"copy.readme": "copyfiles ./README.md ./dist/material-css-vars",
"pub": "run-s lib && cd ./dist/material-css-vars/ && npm publish && cd .. && cd ..",
"patch": "npm version patch && cd ./projects/material-css-vars && npm version patch && cd .. && cd .. && git add . && git commit -am\"chore: update lib version patch\"",
"minor": "npm version minor && cd ./projects/material-css-vars && npm version minor && cd .. && cd .. && git add . && git commit -am\"chore: update lib version minor\"",
"major": "npm version major && cd ./projects/material-css-vars && npm version major && cd .. && cd .. && git add . && git commit -am\"chore: update lib version major\"",
"patch-release_": "run-s lib demo patch pub",
"patch-release": "npm run patch-release_",
"minor-release_": "run-s lib demo minor pub",
"minor-release": "npm run minor-release_",
"major-release_": "run-s lib demo major pub",
"major-release": "npm run major-release_",
"dryBuild": "run-s lib demo",
"update": "npx npm-check-updates -u",
"prettier-check": "prettier . --check",
"prettier-fix": "prettier . --write"
},
"dependencies": {
"@angular/cdk": "^22.0.0",
"@angular/common": "^22.0.0",
"@angular/compiler": "^22.0.0",
"@angular/core": "^22.0.0",
"@angular/forms": "^22.0.0",
"@angular/material": "^22.0.0",
"@angular/platform-browser": "^22.0.0",
"@angular/platform-browser-dynamic": "^22.0.0",
"@angular/router": "^22.0.0",
"@ctrl/tinycolor": "^4.2.0",
"@types/node": "^24.12.4",
"ngx-color-picker": "^20.1.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1",
"zone.js": "~0.16.2"
},
"devDependencies": {
"@angular/build": "^22.0.0",
"@angular/cli": "^22.0.0",
"@angular/compiler-cli": "^22.0.0",
"@angular/language-service": "^22.0.0",
"@types/jasmine": "^6.0.0",
"angular-eslint": "^21.4.0",
"copyfiles": "^2.4.1",
"eslint": "^10.4.1",
"gh-pages": "^6.3.0",
"istanbul-lib-instrument": "^6.0.3",
"jasmine-core": "^6.2.0",
"karma": "^6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.1",
"karma-firefox-launcher": "^2.1.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.2.0",
"karma-safarinative-launcher": "^1.1.0",
"ng-packagr": "^22.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.8.3",
"typescript": "~6.0.3",
"typescript-eslint": "^8.60.0"
},
"engines": {
"npm": "Please use pnpm instead of npm to install dependencies",
"yarn": "Please use pnpm instead of yarn to install dependencies",
"pnpm": "^11.5.0"
},
"packageManager": "pnpm@11.5.0"
}