forked from ng-bootstrap/ng-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
159 lines (159 loc) · 6.58 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
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "@ng-bootstrap/ng-bootstrap",
"version": "17.0.1",
"description": "Angular powered Bootstrap",
"author": "https://github.com/ng-bootstrap/ng-bootstrap/graphs/contributors",
"engines": {
"node": ">=16.10.0",
"yarn": ">=1.15.2 <2.0.0"
},
"scripts": {
"version": "yarn changelog && git add CHANGELOG.md",
"postversion": "yarn ngb:build && yarn demo:build",
"preinstall": "node misc/preinstall.js",
"prepare": "is-ci || husky install .husky",
"build": "yarn ngb:build && yarn demo:build",
"test": "yarn ngb:lint && yarn ngb:test && yarn schematics:test",
"tdd": "yarn ngb:tdd",
"e2e": "yarn e2e-app:lint && yarn ngb:e2e && yarn demo:e2e",
"demo": "yarn demo:docs && yarn demo:sources && yarn demo:stackblitzes && yarn demo:serve",
"ssr": "yarn ssr-app:lint && yarn ssr-app:build && yarn ssr-app:e2e",
"changelog": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file --release-count 1",
"changelog:patch": "git add CHANGELOG.md && git commit --amend --no-edit && git tag -f $npm_package_version",
"check-format": "prettier -c .",
"format": "prettier -w .",
"saucelabs": "ng test ng-bootstrap -c saucelabs",
"scripts:tdd": "ts-node-dev --respawn --project misc/tsconfig.json node_modules/jasmine/bin/jasmine misc/*.spec.ts",
"scripts:test": "ts-node --project misc/tsconfig.json node_modules/jasmine/bin/jasmine misc/*.spec.ts",
"e2e-app:serve": "ng serve e2e-app",
"e2e-app:lint": "ng lint e2e-app",
"ngb:static": "ts-node --project misc/tsconfig.json misc/copy-static-files.ts",
"ngb:lint": "ng lint ng-bootstrap",
"ngb:test": "ng test ng-bootstrap -c coverage",
"ngb:tdd": "ng test ng-bootstrap",
"ngb:e2e": "playwright test -c e2e-app",
"ngb:build": "ng build ng-bootstrap -c production && yarn schematics:build && yarn ngb:static",
"demo:serve": "ng serve demo",
"demo:docs": "ts-node --project misc/tsconfig.json misc/generate-docs.ts",
"demo:stackblitzes": "ts-node --project misc/tsconfig.json misc/generate-stackblitzes.ts",
"demo:sources": "ts-node --project misc/tsconfig.json misc/extract-demo-sources.ts",
"demo:lint": "ng lint demo",
"demo:build": "yarn demo:lint && yarn demo:docs && yarn demo:sources && yarn demo:stackblitzes && ng build demo",
"demo:publish": "gh-pages --dist demo/dist/browser --branch master --repo https://github.com/ng-bootstrap/ng-bootstrap.github.io.git",
"demo:release-snapshot": "ts-node --project misc/tsconfig.json misc/demo-release-snapshot.ts",
"demo:e2e": "yarn demo:docs && playwright test -c demo",
"ssr-app:lint": "ng lint ssr-app",
"ssr-app:serve": "ng serve ssr-app",
"ssr-app:serve-express": "node ssr-app/dist/server/server.mjs",
"ssr-app:e2e": "playwright test -c ssr-app",
"ssr-app:build": "ng build ssr-app",
"test-app:serve": "ng serve test-app",
"test-app:build": "ng build test-app",
"schematics:build": "rollup --failAfterWarnings -c schematics/rollup.config.js",
"schematics:tdd": "ts-node-dev --respawn --project schematics/tsconfig.json node_modules/jasmine/bin/jasmine schematics/**/*.spec.ts",
"schematics:test": "ts-node --project schematics/tsconfig.json node_modules/jasmine/bin/jasmine schematics/**/*.spec.ts",
"ci": "yarn check-format && yarn test && yarn e2e && yarn build -c ci && yarn ssr"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ng-bootstrap/ng-bootstrap.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/ng-bootstrap/ng-bootstrap/issues"
},
"homepage": "https://github.com/ng-bootstrap/ng-bootstrap#readme",
"dependencies": {
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-builders/custom-webpack": "18.0.0-beta.3",
"@angular-devkit/build-angular": "~18.0.3",
"@angular-devkit/core": "~18.0.0",
"@angular-devkit/schematics": "~18.0.0",
"@angular-eslint/builder": "^18.0.1",
"@angular-eslint/eslint-plugin": "^18.0.1",
"@angular-eslint/eslint-plugin-template": "^18.0.1",
"@angular-eslint/schematics": "^18.0.1",
"@angular-eslint/template-parser": "^18.0.1",
"@angular/animations": "~18.0.0",
"@angular/cli": "~18.0.3",
"@angular/common": "~18.0.0",
"@angular/compiler": "~18.0.0",
"@angular/compiler-cli": "~18.0.0",
"@angular/core": "~18.0.0",
"@angular/forms": "~18.0.0",
"@angular/localize": "~18.0.0",
"@angular/platform-browser": "~18.0.0",
"@angular/platform-browser-dynamic": "~18.0.0",
"@angular/platform-server": "~18.0.0",
"@angular/router": "~18.0.0",
"@angular/ssr": "^18.0.0",
"@axe-core/playwright": "^4.8.1",
"@commitlint/cli": "12.1.4",
"@commitlint/config-angular": "12.1.4",
"@playwright/test": "^1.39.0",
"@popperjs/core": "2.11.8",
"@rollup/plugin-replace": "^5.0.4",
"@rollup/plugin-typescript": "^11.1.5",
"@schematics/angular": "~18.0.0",
"@types/express": "^4.17.17",
"@types/fs-extra": "^9.0.3",
"@types/glob": "^7.1.1",
"@types/he": "^1.1.0",
"@types/intl": "^1.2.2",
"@types/jasmine": "~5.1.1",
"@types/node": "^16.18.26",
"@types/prismjs": "1.26.2",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@typescript-eslint/utils": "^7.2.0",
"bootstrap": "5.3.2",
"bootstrap-icons": "1.9.1",
"conventional-changelog-cli": "^2.0.12",
"coverage-istanbul-loader": "^3.0.3",
"ejs": "3.1.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-deprecation": "^2.0.0",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-playwright": "^0.18.0",
"eslint-plugin-unused-imports": "^3.2.0",
"express": "^4.18.2",
"fs-extra": "^9.0.1",
"gh-pages": "^3.1.0",
"glob": "^7.1.1",
"husky": "^7.0.4",
"is-ci": "^3.0.1",
"jasmine": "~5.1.0",
"jasmine-core": "~5.1.1",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.1",
"karma-firefox-launcher": "^2.1.2",
"karma-jasmine": "~5.1.0",
"karma-safari-launcher": "^1.0.0",
"karma-sauce-launcher": "^4.3.6",
"lint-staged": "^15.1.0",
"marked": "^9.1.2",
"ng-packagr": "~18.0.0",
"nyc": "14.1.1",
"playwright-core": "^1.39.0",
"prettier": "3.1.0",
"prismjs": "1.29.0",
"rollup": "^4.1.4",
"rxjs": "~7.5.5",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "~5.4.5",
"zone.js": "~0.14.2"
},
"resolutions": {
"webdriverio": "^7.33.0",
"wrap-ansi": "^7.0.0"
},
"lint-staged": {
"*.{js,ts,css,scss,html,md}": "prettier --write"
}
}