forked from VagrantAI-c/ng-carousel-cdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 5.01 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "ng-carousel-demo",
"version": "1.10.1",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"test:lib": "ng test ng-carousel",
"test:lib:once": "ng test ng-carousel --no-watch --configuration=production",
"test:lib:coverage": "ng test ng-carousel --code-coverage --no-watch",
"test:showcase:once": "ng test --no-watch --configuration=production",
"build:gh": "ng build --configuration=production --base-href \"https://vagrantai-c.github.io/ng-carousel-cdk/\"",
"publish-demo": "npx angular-cli-ghpages --dir dist/browser --no-silent --repo https://github.com/VagrantAI-c/ng-carousel-cdk.git --name=\"Demo publisher\" [email protected]",
"copy:readme": "copyfiles ./README.md ./dist/ng-carousel",
"build:lib": "ng build ng-carousel --configuration=production && npm run copy:readme",
"publish:lib": "npx semantic-release",
"semantic-release": "semantic-release",
"adjust-version": "npm-run-all adjust-version:*",
"adjust-version:lib": "rjp projects/ng-carousel/package.json version $VERSION",
"adjust-version:main": "rjp package.json version $VERSION",
"commit": "npx git-cz",
"dev:ssr": "ng run ng-carousel-demo:serve-ssr",
"serve:ssr": "node dist/server/main.js",
"build:ssr": "ng build --configuration=production && ng run ng-carousel-demo:server:production",
"prerender": "ng run ng-carousel-demo:prerender"
},
"private": true,
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"release": {
"pkgRoot": "dist/ng-carousel",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/exec",
{
"prepareCmd": "VERSION=${nextRelease.version} npm run adjust-version"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json",
"projects/ng-carousel/package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"dependencies": {
"@angular/animations": "^14.2.7",
"@angular/cdk": "^14.2.5",
"@angular/common": "^14.2.7",
"@angular/compiler": "^14.2.7",
"@angular/core": "^14.2.7",
"@angular/forms": "^14.2.7",
"@angular/material": "^14.2.5",
"@angular/platform-browser": "^14.2.7",
"@angular/platform-browser-dynamic": "^14.2.7",
"@angular/platform-server": "^14.2.7",
"@angular/router": "^14.2.7",
"@nguniversal/express-engine": "^14.2.0",
"bezier-easing": "^2.1.0",
"express": "^4.18.2",
"rxjs": "^7.5.7",
"tslib": "^2.4.0",
"typescript": "^4.8.4",
"zone.js": "^0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "^14.2.6",
"@angular-eslint/builder": "14.1.2",
"@angular-eslint/eslint-plugin": "14.1.2",
"@angular-eslint/eslint-plugin-template": "14.1.2",
"@angular-eslint/schematics": "14.1.2",
"@angular-eslint/template-parser": "14.1.2",
"@angular/cli": "^14.2.6",
"@angular/compiler-cli": "^14.2.7",
"@angular/language-service": "^14.2.7",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@commitlint/prompt": "^17.1.2",
"@nguniversal/builders": "^14.2.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.6",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/express": "^4.17.14",
"@types/jasmine": "~4.3.0",
"@types/jasminewd2": "~2.0.10",
"@types/node": "^18.11.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"angular-cli-ghpages": "^1.0.3",
"codelyzer": "^6.0.2",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.26.0",
"husky": "^8.0.1",
"jasmine-core": "~4.4.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.1",
"karma-coverage-istanbul-reporter": "~3.0.3",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^14.2.2",
"npm-run-all": "^4.1.5",
"protractor": "~7.0.0",
"replace-json-property": "^1.8.0",
"semantic-release": "^19.0.5",
"ts-loader": "^9.4.1",
"ts-node": "~10.9.1",
"tslint": "~6.1.3",
"webpack-cli": "^4.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/VagrantAI-c/ng-carousel-cdk.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}