forked from johannesjo/angular-material-css-vars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.91 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
{
"name": "angular-material-css-vars",
"version": "4.2.2",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"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",
"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"
},
"dependencies": {
"@angular/animations": "^15.0.0",
"@angular/cdk": "^15.0.0",
"@angular/common": "^15.0.0",
"@angular/compiler": "^15.0.0",
"@angular/core": "^15.0.0",
"@angular/forms": "^15.0.0",
"@angular/material": "^15.0.0",
"@angular/platform-browser": "^15.0.0",
"@angular/platform-browser-dynamic": "^15.0.0",
"@angular/router": "^15.0.0",
"@ctrl/tinycolor": "^3.4.0",
"ngx-color-picker": "^13.0.0",
"rxjs": "~7.5.7",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.0",
"@angular/cli": "^15.0.0",
"@angular/compiler-cli": "^15.0.0",
"@angular/language-service": "^15.0.0",
"@types/jasmine": "^4.3.0",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^18.11.9",
"codelyzer": "^6.0.0",
"copyfiles": "^2.1.1",
"gh-pages": "^4.0.0",
"jasmine-core": "^4.5.0",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.3.16",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^15.0.0",
"npm-run-all": "^4.1.5",
"protractor": "~7.0.0",
"ts-node": "^10.1.0",
"tslint": "~6.1.0",
"typescript": "~4.8.0"
}
}