-
-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
75 lines (75 loc) · 3.02 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
{
"name": "angular-material-css-vars",
"version": "8.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test --code-coverage=true",
"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/animations": "^19.0.0",
"@angular/cdk": "^19.0.0",
"@angular/common": "^19.0.0",
"@angular/compiler": "^19.0.0",
"@angular/core": "^19.0.0",
"@angular/forms": "^19.0.0",
"@angular/material": "^19.0.0",
"@angular/platform-browser": "^19.0.0",
"@angular/platform-browser-dynamic": "^19.0.0",
"@angular/router": "^19.0.0",
"@ctrl/tinycolor": "^4.0.0",
"ngx-color-picker": "^17.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.5.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.0.0",
"@angular/cli": "^19.0.0",
"@angular/compiler-cli": "^19.0.0",
"@angular/language-service": "^19.0.0",
"@types/jasmine": "^5.1.1",
"angular-eslint": "^19.0.0",
"copyfiles": "^2.1.1",
"eslint": "^9.0.0",
"gh-pages": "^6.0.0",
"jasmine-core": "^5.0.1",
"karma": "^6.4.1",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "^2.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"karma-safarinative-launcher": "^1.1.0",
"ng-packagr": "^19.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"typescript": "~5.6.3",
"typescript-eslint": "^8.0.0"
}
}