forked from valor-software/ngx-bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·162 lines (162 loc) · 6.29 KB
/
package.json
File metadata and controls
executable file
·162 lines (162 loc) · 6.29 KB
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
{
"name": "ngx-bootstrap-base",
"version": "3.1.1",
"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.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 --type-check -p src/tsconfig.spec.json -e \"src/chronos/**\" -e \"src/**/bs-datepicker-view.html\"",
"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 build.es2015",
"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": "cypress run --config video=false",
"view-stats": "webpack-bundle-analyzer demo/dist/stats.json",
"build:dynamic": "run-s build link build:client-and-server-bundles webpack:server configure-heroku",
"serve:dynamic": "node demo/dist/server.js",
"build:client-and-server-bundles": "ng build -bh / --prod --env=server && ng build -bh / --prod --env=server --app 1 --output-hashing=false",
"webpack:server": "webpack --config ./scripts/universal/webpack.server.config.js --progress --colors",
"configure-heroku": "node scripts/universal/configure-heroku.js"
},
"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": ">=6.0.0",
"@angular/core": ">=6.0.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "0.6.1",
"@angular/animations": "6.0.1",
"@angular/cli": "6.1.5",
"@angular/common": "6.0.1",
"@angular/compiler": "6.0.1",
"@angular/compiler-cli": "6.0.1",
"@angular/core": "6.0.1",
"@angular/forms": "6.0.1",
"@angular/http": "6.0.1",
"@angular/language-service": "6.0.1",
"@angular/platform-browser": "6.0.1",
"@angular/platform-browser-dynamic": "6.0.1",
"@angular/platform-server": "6.0.1",
"@angular/router": "6.0.1",
"@angular/service-worker": "6.0.1",
"@angular-devkit/core": "0.8.5",
"@angular-devkit/schematics": "0.8.5",
"@cypress/webpack-preprocessor": "3.0.1",
"@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": "2.8.7",
"@types/marked": "0.3.0",
"@types/node": "10.0.8",
"@types/tapable": "1.0.2",
"@types/webpack": "4.1.6",
"bootstrap": "4.1.1",
"chai": "4.1.2",
"classlist-polyfill": "1.2.0",
"codecov": "3.0.2",
"codelyzer": "4.3.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.0",
"gh-pages": "1.1.0",
"gitignore-to-glob": "0.3.0",
"google-code-prettify": "1.0.5",
"html-loader": "0.5.5",
"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": "2.0.2",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.2.1",
"karma-firefox-launcher": "1.1.0",
"karma-jasmine": "1.1.2",
"karma-jasmine-html-reporter": "1.1.0",
"karma-remap-istanbul": "0.6.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": "4.2.0",
"ngm-cli": "1.0.4",
"ngx-page-scroll": "5.0.0",
"npm-run-all": "4.1.3",
"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.1.0",
"ts-helpers": "^1.1.1",
"ts-loader": "4.3.0",
"ts-node": "6.0.3",
"tslint": "5.10.0",
"tslint-config-valorsoft": "2.1.1",
"typedoc": "0.11.1",
"typescript": "2.7.2",
"wait-on": "2.1.0",
"wallaby-webpack": "3.9.7",
"webpack-bundle-analyzer": "2.11.3",
"zone.js": "0.8.26"
}
}