forked from valor-software/ngx-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·175 lines (175 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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
{
"name": "ngx-bootstrap-base",
"version": "3.2.0",
"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 --configuration production",
"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.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.sass",
"build.watch": "node scripts/build-modules --watch",
"build:schematics": "node scripts/schematics/build",
"build.modules": "node scripts/build-modules",
"build.sass": "node-sass --recursive src --output dist --source-map true --source-map-contents sass",
"build.es2015": "node ./scripts/es2015/bundle.es2015.js",
"start": "ng serve --aot --host 0.0.0.0",
"pretest": "run-s lint build",
"test": "ng test && 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 2",
"cy:open": "cypress open",
"cy:run:smoke": "cypress run --config integrationFolder=cypress/integration",
"cy:run:full": "cypress run --config integrationFolder=cypress/full",
"view-stats": "webpack-bundle-analyzer demo/dist/stats.json",
"build:dynamic": "run-s build build:client-and-server-bundles webpack:server configure-heroku",
"serve:dynamic": "node demo/dist/server",
"build:client-and-server-bundles": "ng build --configuration production && 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",
"devDependencies": {
"@angular-devkit/build-angular": "~12.2.18",
"@angular-devkit/core": "12.2.18",
"@angular-devkit/schematics": "12.2.18",
"@angular/animations": "12.2.17",
"@angular/cli": "12.2.18",
"@angular/common": "12.2.17",
"@angular/compiler": "12.2.17",
"@angular/compiler-cli": "12.2.17",
"@angular/core": "12.2.17",
"@angular/forms": "12.2.17",
"@angular/language-service": "12.2.17",
"@angular/platform-browser": "12.2.17",
"@angular/platform-browser-dynamic": "12.2.17",
"@angular/platform-server": "12.2.17",
"@angular/router": "12.2.17",
"@angular/service-worker": "12.2.17",
"@cypress/webpack-preprocessor": "3.0.1",
"@netbasal/spectator": "2.2.0-rc.2",
"@nguniversal/express-engine": "6.0.0",
"@nguniversal/module-map-ngfactory-loader": "6.0.0",
"@schematics/angular": "0.8.5",
"@types/chai": "4.1.3",
"@types/jasmine": "~3.6.0",
"@types/marked": "0.3.0",
"@types/node": "^12.11.1",
"@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": "^6.0.0",
"compression": "1.7.2",
"conventional-changelog-cli": "1.3.22",
"conventional-github-releaser": "2.0.2",
"core-js": "2.5.6",
"cpy": "7.0.0",
"cpy-cli": "1.0.1",
"cypress": "3.1.3",
"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.6.0",
"jasmine-data-provider": "2.2.0",
"jasmine-spec-reporter": "~5.0.0",
"json": "9.0.6",
"karma": "~6.4.2",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-edge-launcher": "0.4.2",
"karma-firefox-launcher": "1.1.0",
"karma-ie-launcher": "1.0.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-remap-istanbul": "0.6.0",
"karma-safari-launcher": "1.0.0",
"karma-sauce-launcher": "1.2.0",
"karma-typescript": "3.0.12",
"lite-server": "2.3.0",
"lodash": "4.17.10",
"mocha": "5.1.1",
"ng-packagr": "^12.2.7",
"ngm-cli": "1.0.4",
"ngx-page-scroll": "5.0.0",
"npm-run-all": "4.1.5",
"prettier": "1.12.1",
"reflect-metadata": "0.1.12",
"require-dir": "1.0.0",
"rollup": "0.58.2",
"rollup-plugin-commonjs": "9.1.3",
"rollup-plugin-node-resolve": "3.3.0",
"rxjs": "6.6.7",
"ts-helpers": "^1.1.1",
"ts-loader": "4.3.0",
"ts-node": "6.0.3",
"tslint": "~6.1.0",
"tslint-config-valorsoft": "2.1.1",
"typedoc": "0.11.1",
"typescript": "4.3.5",
"wait-on": "2.1.0",
"wallaby-webpack": "3.9.7",
"webpack-bundle-analyzer": "2.11.3",
"webpack-cli": "3.1.2",
"zone.js": "~0.11.4"
},
"overrides": {
"node-sass": "8.0.0"
},
"dependencies": {
"tslib": "^2.0.0"
}
}