forked from valor-software/ngx-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
203 lines (203 loc) · 8.08 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
{
"name": "ngx-bootstrap-base",
"version": "5.1.2",
"description": "Native Angular Bootstrap Components",
"private": true,
"scripts": {
"lite-server": "lite-server -c scripts/bs-config.js",
"demo.gen-docs": "node scripts/docs/get-doc.js",
"demo.fetch": "node scripts/fetch-docs.js",
"demo.archive": "node scripts/archive.js",
"demo.ng-build": "ng build --prod",
"demo.ng-build:ivy": "ng build --configuration ivy",
"demo.set-version": "run-s demo.fetch demo.archive",
"demo.deploy-gh-pages": "gh-pages -d gh-pages",
"demo.build": "run-s build demo.gen-docs demo.ng-build demo.set-version",
"demo.build:ivy": "run-s build demo.gen-docs demo.ng-build:ivy demo.set-version",
"demo.serve": "run-s demo.build lite-server",
"demo.serve-universal": "run-s build:dynamic serve:dynamic",
"demo.deploy": "run-s demo.build demo.deploy-gh-pages",
"link": "npm link ./dist && npm link ngx-bootstrap",
"lint-pretty": "prettier --config .prettierrc --write -l \"{demo/src,src}/**/*.ts\"",
"lint-src": "tslint \"src/**/*.ts\" -c tslint.json -p src/tsconfig.spec.json -e \"src/chronos/**\"",
"lint": "exit 0",
"disable-lint": "tslint \"**/*.ts\" -c tslint.json --fix --type-check -t prose -e \"node_modules/**\" -e \"dist/**\" -e \"temp/**\" -e \"scripts/docs/**\"",
"flow.changelog": "conventional-changelog -i CHANGELOG.md -s -p angular",
"flow.github-release": "conventional-github-releaser -p angular",
"build": "run-s build.modules build:schematics build.sass dist-to-modules compiler-cli:fix",
"compiler-cli:fix": "scripts/ivy/compiler-cli-fix.sh",
"dist-to-modules": "cp -R ./dist/. ./node_modules/ngx-bootstrap",
"build.watch": "node scripts/build-modules --watch",
"build:schematics": "node scripts/schematics/build",
"build.modules": "node scripts/build-modules",
"ci:update-pkg": "node scripts/ci/update-pkg.js",
"ci:rename-pkg": "mv node_modules/ngx-bootstrap-ci node_modules/ngx-bootstrap",
"build.sass": "node-sass --recursive src --output dist --source-map true --source-map-contents sass",
"start": "ng serve --aot --host 0.0.0.0",
"start:ivy": "ng serve --configuration ivy --host 0.0.0.0",
"pretest": "run-s lint build",
"test": "ng test && npm run test:schematics",
"test:ivy": "ng test --configuration ivy && npm run test:schematics",
"test:schematics": "jasmine schematics/src/**/*.spec.js",
"test-cross": "SAUCE=true ng test",
"test-coverage": "ng test --code-coverage",
"version": "node scripts/version && npm run version.changelog",
"version.changelog": "run-s changelog git-add git-commit-changelog",
"git-add": "git add -A",
"git-commit-changelog": "git commit -am \"chore(changelog): update [skip ci] \"",
"changelog": "conventional-changelog -i CHANGELOG.md -s -p angular -r 0",
"cy:open": "cypress open",
"cy:run:smoke": "APPLITOOLS_CONCURRENCY=100 cypress run --config integrationFolder=cypress/integration",
"cy:run:full": "APPLITOOLS_CONCURRENCY=100 cypress run --config integrationFolder=cypress/full",
"cy:run:all": "APPLITOOLS_CONCURRENCY=100 cypress run --config integrationFolder=cypress --spec '**/*_spec.ts'",
"cy:run:snapshot": "APPLITOOLS_CONCURRENCY=100 cypress run --config integrationFolder=cypress/snapshot",
"view-stats": "webpack-bundle-analyzer demo/dist/stats.json",
"build:ssr": "run-s build build:client-and-server-bundles webpack:server configure-heroku",
"build:ssr:ivy": "run-s build build:client-and-server-bundles:ivy webpack:server configure-heroku",
"serve:ssr": "node demo/dist/server",
"build:client-and-server-bundles": "ng build --prod && ng run ngx-bootstrap:server",
"build:client-and-server-bundles:ivy": "npm run demo.ng-build:ivy && ng run ngx-bootstrap:server",
"webpack:server": "webpack --config ./scripts/universal/webpack.server.config.js --progress --colors",
"configure-heroku": "node scripts/universal/configure-heroku.js"
},
"husky": {
"hooks": {
"pre-push": "npm run lint-src"
}
},
"main": "bundles/ngx-bootstrap.umd.js",
"module": "esm5/ngx-bootstrap.js",
"typings": "ngx-bootstrap.d.ts",
"keywords": [
"angular",
"bootstap",
"ng",
"ng2",
"angular2",
"twitter-bootstrap"
],
"author": "Dmitriy Shekhovtsov <valorkin@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/valor-software/ngx-bootstrap.git"
},
"bugs": {
"url": "https://github.com/valor-software/ngx-bootstrap/issues"
},
"homepage": "https://github.com/valor-software/ngx-bootstrap#readme",
"peerDependencies": {
"@angular/common": ">=7.0.0",
"@angular/core": ">=7.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.801.2",
"@angular-devkit/core": "8.2.0",
"@angular-devkit/schematics": "8.2.0",
"@angular/animations": "8.2.0",
"@angular/cli": "8.2.0",
"@angular/common": "8.2.0",
"@angular/compiler": "8.2.0",
"@angular/compiler-cli": "8.2.0",
"@angular/core": "8.2.0",
"@angular/forms": "8.2.0",
"@angular/language-service": "8.2.0",
"@angular/platform-browser": "8.2.0",
"@angular/platform-browser-dynamic": "8.2.0",
"@angular/platform-server": "8.2.0",
"@angular/router": "8.2.0",
"@angular/service-worker": "8.2.0",
"@applitools/eyes.cypress": "3.4.2",
"@cypress/webpack-preprocessor": "3.0.1",
"@nestjs/common": "6.0.1",
"@nestjs/core": "6.0.5",
"@nestjs/microservices": "6.0.5",
"@nestjs/ng-universal": "0.5.1",
"@nestjs/platform-express": "^6.0.1",
"@netbasal/spectator": "3.9.1",
"@nguniversal/common": "7.1.1",
"@nguniversal/express-engine": "7.1.1",
"@nguniversal/module-map-ngfactory-loader": "7.1.1",
"@schematics/angular": "8.2.0",
"@stackblitz/sdk": "1.3.0",
"@types/chai": "4.1.3",
"@types/jasmine": "2.8.7",
"@types/jasminewd2": "2.0.6",
"@types/marked": "0.3.0",
"@types/node": "10.0.8",
"@types/sinon": "2.3.7",
"@types/tapable": "1.0.2",
"@types/webpack": "4.1.6",
"bootstrap": "4.2.1",
"chai": "4.1.2",
"classlist-polyfill": "1.2.0",
"codecov": "3.1.0",
"codelyzer": "5.0.1",
"compression": "1.7.2",
"conventional-changelog-cli": "1.3.22",
"conventional-github-releaser": "2.0.2",
"core-js": "2.6.5",
"cpy": "7.0.0",
"cpy-cli": "2.0.0",
"cypress": "3.4.1",
"express": "4.16.4",
"gh-pages": "1.1.0",
"gitignore-to-glob": "0.3.0",
"google-code-prettify": "1.0.5",
"html-loader": "0.5.5",
"husky": "1.0.0",
"intl": "^1.2.5",
"jasmine": "3.1.0",
"jasmine-core": "3.1.0",
"jasmine-data-provider": "2.2.0",
"jasmine-spec-reporter": "4.2.1",
"json": "9.0.6",
"karma": "4.1.0",
"karma-chrome-launcher": "2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "1.4.3",
"karma-edge-launcher": "0.4.2",
"karma-firefox-launcher": "1.1.0",
"karma-ie-launcher": "1.0.0",
"karma-jasmine": "1.1.2",
"karma-jasmine-html-reporter": "1.1.0",
"karma-remap-istanbul": "0.6.0",
"karma-safari-launcher": "1.0.0",
"karma-sauce-launcher": "1.2.0",
"karma-typescript": "4.0.0",
"lite-server": "2.3.0",
"lodash": "4.17.10",
"mini-css-extract-plugin": "0.5.0",
"mocha": "5.1.1",
"ng-packagr": "5.4.3",
"ngm-cli": "1.0.4",
"ngx-page-scroll": "6.0.1",
"ngx-page-scroll-core": "6.0.1",
"nodemon": "1.18.10",
"npm-run-all": "4.1.5",
"prettier": "1.12.1",
"reflect-metadata": "0.1.13",
"require-dir": "1.0.0",
"rollup": "0.58.2",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-node-resolve": "3.3.0",
"rxjs": "6.5.2",
"terser": "3.17.0",
"ts-helpers": "^1.1.1",
"ts-loader": "4.3.0",
"ts-node": "6.0.3",
"tsconfig-paths": "3.8.0",
"tsickle": "0.35.0",
"tslib": "1.9.3",
"tslint": "5.10.0",
"tslint-config-valorsoft": "2.1.1",
"typedoc": "0.11.1",
"typescript": "3.5.3",
"wait-on": "2.1.0",
"wallaby-webpack": "3.9.7",
"web-animations-js": "2.3.2",
"webpack-bundle-analyzer": "2.11.3",
"webpack-cli": "3.3.0",
"zone.js": "0.9.1"
}
}