forked from ng-bootstrap/ng-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
128 lines (128 loc) · 5.38 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
{
"name": "@ng-bootstrap/ng-bootstrap",
"version": "6.0.2",
"description": "Angular powered Bootstrap",
"author": "https://github.com/ng-bootstrap/ng-bootstrap/graphs/contributors",
"engines": {
"node": ">=12.10",
"yarn": ">=1.15.2 <2.0.0"
},
"scripts": {
"preinstall": "node misc/preinstall.js",
"postinstall": "ngcc --properties es2015 browser module main --first-only --create-ivy-entry-points",
"build": "yarn ngb:build-ivy && yarn ngb:build && yarn demo:build",
"test": "yarn check-format && yarn ngb:lint && yarn ngb:test",
"tdd": "yarn ngb:tdd",
"e2e": "yarn e2e-app:lint && yarn ngb:e2e && yarn demo:e2e",
"demo": "yarn demo:docs && yarn demo:stackblitzes && yarn demo:serve",
"demo:ie": "yarn demo -c ie",
"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",
"check-format": "ts-node --project misc/tsconfig.json misc/check-format.ts",
"check-ts": "yarn demo:docs && ts-node --project misc/tsconfig.json misc/check-ts.ts",
"saucelabs": "ng test ng-bootstrap -c saucelabs",
"saucelabs:ie": "ng test ng-bootstrap -c saucelabs-ie",
"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 --code-coverage --source-map true --progress false --watch false",
"ngb:tdd": "ng test ng-bootstrap --source-map false",
"ngb:e2e": "ng e2e e2e-app",
"ngb:e2e-noserve": "ng e2e e2e-app -c noserve",
"ngb:build-ivy": "ng build ng-bootstrap",
"ngb:build": "ng build ng-bootstrap --prod && yarn ngb:static",
"demo:serve": "ng serve demo --host 0.0.0.0",
"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:lint": "ng lint demo",
"demo:build": "yarn demo:lint && yarn demo:docs && yarn demo:stackblitzes && ng build demo --prod",
"demo:deploy": "yarn demo:build && yarn demo:push",
"demo:publish": "gh-pages --dist demo/dist --branch master --repo https://github.com/ng-bootstrap/ng-bootstrap.github.io.git",
"demo:e2e": "yarn demo:docs && ng e2e demo",
"ssr-app:lint": "ng lint ssr-app",
"ssr-app:serve": "ng serve ssr-app --host 0.0.0.0",
"ssr-app:serve-express": "node ssr-app/dist/server/main.js",
"ssr-app:e2e": "concurrently --success first --kill-others --names \"express,protractor\" \"yarn ssr-app:serve-express\" \"ng e2e ssr-app\"",
"ssr-app:build": "ng build ssr-app --prod && ng run ssr-app:server:production",
"ci": "yarn check-ts && yarn test && yarn e2e && yarn build --progress false && 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": {},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.1",
"@angular-devkit/build-ng-packagr": "~0.900.1",
"@angular/animations": "~9.0.0",
"@angular/cli": "~9.0.1",
"@angular/common": "~9.0.0",
"@angular/compiler": "~9.0.0",
"@angular/compiler-cli": "~9.0.0",
"@angular/core": "~9.0.0",
"@angular/forms": "~9.0.0",
"@angular/localize": "~9.0.0",
"@angular/platform-browser": "~9.0.0",
"@angular/platform-browser-dynamic": "~9.0.0",
"@angular/platform-server": "~9.0.0",
"@angular/router": "~9.0.0",
"@commitlint/cli": "8.3.4",
"@commitlint/config-angular": "8.3.4",
"@nguniversal/express-engine": "~9.0.0",
"@types/express": "^4.16.1",
"@types/fs-extra": "^7.0.0",
"@types/glob": "^7.1.1",
"@types/he": "^1.1.0",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/marked": "^0.6.5",
"@types/node": "^12.11.1",
"@types/prismjs": "1.16.0",
"bootstrap": "4.4.1",
"clang-format": "1.0.35",
"concurrently": "^4.1.0",
"conventional-changelog-cli": "^2.0.12",
"core-js": "^2",
"cross-spawn": "^7.0.1",
"ejs": "2.6.1",
"express": "^4.16.4",
"fs-extra": "^8.0.0",
"gh-pages": "^2.0.1",
"glob": "^7.1.1",
"husky": "4.0.7",
"jasmine": "~3.5.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.4.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~2.1.0",
"karma-firefox-launcher": "^1.3.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "~2.0.1",
"karma-sauce-launcher": "^2.0.2",
"marked": "^0.7.0",
"ng-packagr": "~9.0.0",
"ngx-build-plus": "^9.0.2",
"nyc": "14.1.1",
"prismjs": "1.16.0",
"protractor": "~5.4.3",
"rxjs": "~6.5.4",
"ts-loader": "^6.0.1",
"ts-node": "~8.3.0",
"ts-node-dev": "^1.0.0-pre.42",
"tslib": "^1.10.0",
"tslint": "~5.18.0",
"tslint-jasmine-rules": "^1.3.2",
"typescript": "~3.7.5",
"webpack": "^4.39.3",
"zone.js": "~0.10.2"
}
}