├── .gitignore ├── LICENSE ├── README.md ├── README_build_pdf.md ├── build.sh ├── build └── build1 │ └── ml-project-checklist.pdf ├── ml-project-checklist.pdf ├── package-lock.json ├── package.json └── style.css /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 Lars Sjösund 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Machine Learning Project Checklist 2 | The items on this checklist come from various sources, such as Machine Learning Yearning, Full Stack Deep Learning, Building Machine Learning Powered Applications, and also from my own personal experience. This is work in progress, and contributions are welcome. If you have any additions, please submit a PR to this repo. 3 | 4 | ## Before modelling 5 | ### Project 6 | - [ ] The project has a clear, codified business goal/metric 7 | - [ ] There is a person who is ultimately responsible for the success/failure of the project 8 | - [ ] We have a plan for how to reach a first deployed end product as fast as possible 9 | - [ ] We have decided on how and when to keep the team in sync (daily/weekly standups, retrospectives, planning meetings, etc) 10 | - [ ] We have assessed how the product will impact stakeholders (e.g. people, society, world) 11 | - [ ] We have identified relevant regulation and translated it to requirements 12 | - [ ] We have identified requirements related to fairness, accountability, and transparency 13 | 14 | ### Problem understanding 15 | - [ ] We have decided on one single metric on which to rank our models 16 | - [ ] We have clarified the costs of the different kinds of erroneous predictions 17 | - [ ] We have an understanding of how good performance is "good enough" 18 | - [ ] We know the constraints in serving time w.r.t. memory usage 19 | - [ ] We know the constraints in serving time w.r.t. latency 20 | - [ ] We know the constraints in serving time w.r.t. throughput 21 | - [ ] We know if we’re doing streaming- or batch prediction 22 | - [ ] We understand the current state of ML applied to the problem we’re trying to solve 23 | - [ ] We have an idea of how important freshness is. How often will we need to change the model? 24 | - [ ] We have domain experts who can help us understand the problem and error modes 25 | - [ ] We know where the model will be deployed (server / client, browser / on device) 26 | 27 | ### Data 28 | - [ ] We have selected a dev- and test set that are reflective of the real task we're trying to solve 29 | - [ ] Our dev- and test sets are from the same distribution 30 | - [ ] Our dev set is large enough, so that we can detect improvements to the desired accuracy 31 | - [ ] We understand how to split the data into train/val/test to avoid data leakage 32 | - [ ] If we need to collect data, we know how difficult and costly it will be to collect and annotate 33 | - [ ] We have a plan for how to store and version our data, dataset splits, models, and change in annotations 34 | - [ ] We get a reasonable “ML Test Score”, table 1 35 | 36 | ## Modelling 37 | - [ ] We have one or several well thought out baselines in place. These are not good enough, so there’s an actual need to use ML 38 | - [ ] There’s a metrics webpage where we can compare runs and the url is ___________________ 39 | - [ ] We can (approximately) reproduce a model if needed 40 | - [ ] We get a reasonable “ML Test Score”, table 2 41 | 42 | ## Deployment 43 | - [ ] We have CI in place 44 | - [ ] We have tests for the full training pipeline 45 | - [ ] We have validation tests 46 | - [ ] We have functionality tests 47 | - [ ] We have unit tests 48 | - [ ] We have CD in place 49 | - [ ] We have CT in place 50 | - [ ] Blue/green deployment in place 51 | - [ ] We can deploy a model in shadow mode 52 | - [ ] Monitoring in place for memory consumption 53 | - [ ] Monitoring in place for CPU consumption 54 | - [ ] Monitoring in place for latency 55 | - [ ] Monitoring in place for downtime 56 | - [ ] Monitoring in place for requests per second 57 | - [ ] Monitoring in place for prediction confidence over time 58 | - [ ] We have a way of detecting if a model will fail on a given datapoint, and a corresponding fallback 59 | - [ ] We get a reasonable “ML Test Score”, table 3-4 60 | 61 | 62 | -------------------------------------------------------------------------------- /README_build_pdf.md: -------------------------------------------------------------------------------- 1 | # ML Project Checklist 2 | ## Installation 3 | Clone repo 4 | ```bash 5 | git clone git@github.com:sjosund/ml-project-checklist.git 6 | ``` 7 | Install dependencies 8 | ```bash 9 | cd ml-project-checklist 10 | npm install 11 | ``` 12 | ## Edit and build the checklist 13 | To edit items, change [README.md](README.md). To build the pdf, open a terminal and run `./build.sh`, and the pdf will be available at [ml-project-checklist.pdf](ml-project-checklist.pdf). Print it out and stick it to the wall next to you for your next project. 14 | This is a work in progress, and will be continually updated. Feedback and PRs are more than welcome! 15 | 16 | ## Licence 17 | MIT 18 | -------------------------------------------------------------------------------- /build.sh: -------------------------------------------------------------------------------- 1 | set -e 2 | cat README.md | md-to-pdf --stylesheet style.css > ml-project-checklist.pdf 3 | -------------------------------------------------------------------------------- /build/build1/ml-project-checklist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjosund/ml-project-checklist/f4eac82492267e937a046c3748de250ea7241763/build/build1/ml-project-checklist.pdf -------------------------------------------------------------------------------- /ml-project-checklist.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sjosund/ml-project-checklist/f4eac82492267e937a046c3748de250ea7241763/ml-project-checklist.pdf -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ml-project-checklist", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@samverschueren/stream-to-observable": { 8 | "version": "0.3.1", 9 | "resolved": "https://registry.npmjs.org/@samverschueren/stream-to-observable/-/stream-to-observable-0.3.1.tgz", 10 | "integrity": "sha512-c/qwwcHyafOQuVQJj0IlBjf5yYgBI7YPJ77k4fOJYesb41jio65eaJODRUmfYKhTOFBrIZ66kgvGPlNbjuoRdQ==", 11 | "requires": { 12 | "any-observable": "^0.3.0" 13 | } 14 | }, 15 | "@types/node": { 16 | "version": "17.0.0", 17 | "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.0.tgz", 18 | "integrity": "sha512-eMhwJXc931Ihh4tkU+Y7GiLzT/y/DBNpNtr4yU9O2w3SYBsr9NaOPhQlLKRmoWtI54uNwuo0IOUFQjVOTZYRvw==", 19 | "optional": true 20 | }, 21 | "@types/yauzl": { 22 | "version": "2.9.2", 23 | "resolved": "https://registry.npmjs.org/@types/yauzl/-/yauzl-2.9.2.tgz", 24 | "integrity": "sha512-8uALY5LTvSuHgloDVUvWP3pIauILm+8/0pDMokuDYIoNsOkSwd5AiHBTSEJjKTDcZr5z8UpgOWZkxBF4iJftoA==", 25 | "optional": true, 26 | "requires": { 27 | "@types/node": "*" 28 | } 29 | }, 30 | "agent-base": { 31 | "version": "6.0.2", 32 | "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", 33 | "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", 34 | "requires": { 35 | "debug": "4" 36 | } 37 | }, 38 | "ansi-escapes": { 39 | "version": "3.2.0", 40 | "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", 41 | "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==" 42 | }, 43 | "ansi-regex": { 44 | "version": "2.1.1", 45 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", 46 | "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=" 47 | }, 48 | "ansi-styles": { 49 | "version": "4.3.0", 50 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 51 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 52 | "requires": { 53 | "color-convert": "^2.0.1" 54 | } 55 | }, 56 | "any-observable": { 57 | "version": "0.3.0", 58 | "resolved": "https://registry.npmjs.org/any-observable/-/any-observable-0.3.0.tgz", 59 | "integrity": "sha512-/FQM1EDkTsf63Ub2C6O7GuYFDsSXUwsaZDurV0np41ocwq0jthUAYCmhBX9f+KwlaCgIuWyr/4WlUQUBfKfZog==" 60 | }, 61 | "anymatch": { 62 | "version": "3.1.2", 63 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", 64 | "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", 65 | "requires": { 66 | "normalize-path": "^3.0.0", 67 | "picomatch": "^2.0.4" 68 | } 69 | }, 70 | "arg": { 71 | "version": "5.0.1", 72 | "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.1.tgz", 73 | "integrity": "sha512-e0hDa9H2Z9AwFkk2qDlwhoMYE4eToKarchkQHovNdLTCYMHZHeRjI71crOh+dio4K6u1IcwubQqo79Ga4CyAQA==" 74 | }, 75 | "argparse": { 76 | "version": "1.0.10", 77 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", 78 | "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", 79 | "requires": { 80 | "sprintf-js": "~1.0.2" 81 | } 82 | }, 83 | "balanced-match": { 84 | "version": "1.0.2", 85 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 86 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" 87 | }, 88 | "base64-js": { 89 | "version": "1.5.1", 90 | "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", 91 | "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==" 92 | }, 93 | "binary-extensions": { 94 | "version": "2.2.0", 95 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", 96 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==" 97 | }, 98 | "bl": { 99 | "version": "4.1.0", 100 | "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", 101 | "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", 102 | "requires": { 103 | "buffer": "^5.5.0", 104 | "inherits": "^2.0.4", 105 | "readable-stream": "^3.4.0" 106 | } 107 | }, 108 | "brace-expansion": { 109 | "version": "1.1.11", 110 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 111 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 112 | "requires": { 113 | "balanced-match": "^1.0.0", 114 | "concat-map": "0.0.1" 115 | } 116 | }, 117 | "braces": { 118 | "version": "3.0.2", 119 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 120 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 121 | "requires": { 122 | "fill-range": "^7.0.1" 123 | } 124 | }, 125 | "buffer": { 126 | "version": "5.7.1", 127 | "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", 128 | "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", 129 | "requires": { 130 | "base64-js": "^1.3.1", 131 | "ieee754": "^1.1.13" 132 | } 133 | }, 134 | "buffer-crc32": { 135 | "version": "0.2.13", 136 | "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", 137 | "integrity": "sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI=" 138 | }, 139 | "bytes": { 140 | "version": "3.0.0", 141 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", 142 | "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=" 143 | }, 144 | "chalk": { 145 | "version": "4.1.2", 146 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 147 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 148 | "requires": { 149 | "ansi-styles": "^4.1.0", 150 | "supports-color": "^7.1.0" 151 | } 152 | }, 153 | "chokidar": { 154 | "version": "3.5.2", 155 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz", 156 | "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==", 157 | "requires": { 158 | "anymatch": "~3.1.2", 159 | "braces": "~3.0.2", 160 | "fsevents": "~2.3.2", 161 | "glob-parent": "~5.1.2", 162 | "is-binary-path": "~2.1.0", 163 | "is-glob": "~4.0.1", 164 | "normalize-path": "~3.0.0", 165 | "readdirp": "~3.6.0" 166 | } 167 | }, 168 | "chownr": { 169 | "version": "1.1.4", 170 | "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", 171 | "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" 172 | }, 173 | "cli-cursor": { 174 | "version": "2.1.0", 175 | "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", 176 | "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", 177 | "requires": { 178 | "restore-cursor": "^2.0.0" 179 | } 180 | }, 181 | "cli-truncate": { 182 | "version": "0.2.1", 183 | "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-0.2.1.tgz", 184 | "integrity": "sha1-nxXPuwcFAFNpIWxiasfQWrkN1XQ=", 185 | "requires": { 186 | "slice-ansi": "0.0.4", 187 | "string-width": "^1.0.1" 188 | } 189 | }, 190 | "code-point-at": { 191 | "version": "1.1.0", 192 | "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", 193 | "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=" 194 | }, 195 | "color-convert": { 196 | "version": "2.0.1", 197 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 198 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 199 | "requires": { 200 | "color-name": "~1.1.4" 201 | } 202 | }, 203 | "color-name": { 204 | "version": "1.1.4", 205 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 206 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" 207 | }, 208 | "concat-map": { 209 | "version": "0.0.1", 210 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 211 | "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=" 212 | }, 213 | "content-disposition": { 214 | "version": "0.5.2", 215 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.2.tgz", 216 | "integrity": "sha1-DPaLud318r55YcOoUXjLhdunjLQ=" 217 | }, 218 | "date-fns": { 219 | "version": "1.30.1", 220 | "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-1.30.1.tgz", 221 | "integrity": "sha512-hBSVCvSmWC+QypYObzwGOd9wqdDpOt+0wl0KbU+R+uuZBS1jN8VsD1ss3irQDknRj5NvxiTF6oj/nDRnN/UQNw==" 222 | }, 223 | "debug": { 224 | "version": "4.3.2", 225 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.2.tgz", 226 | "integrity": "sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw==", 227 | "requires": { 228 | "ms": "2.1.2" 229 | } 230 | }, 231 | "devtools-protocol": { 232 | "version": "0.0.937139", 233 | "resolved": "https://registry.npmjs.org/devtools-protocol/-/devtools-protocol-0.0.937139.tgz", 234 | "integrity": "sha512-daj+rzR3QSxsPRy5vjjthn58axO8c11j58uY0lG5vvlJk/EiOdCWOptGdkXDjtuRHr78emKq0udHCXM4trhoDQ==" 235 | }, 236 | "elegant-spinner": { 237 | "version": "1.0.1", 238 | "resolved": "https://registry.npmjs.org/elegant-spinner/-/elegant-spinner-1.0.1.tgz", 239 | "integrity": "sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=" 240 | }, 241 | "end-of-stream": { 242 | "version": "1.4.4", 243 | "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", 244 | "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", 245 | "requires": { 246 | "once": "^1.4.0" 247 | } 248 | }, 249 | "escape-string-regexp": { 250 | "version": "1.0.5", 251 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", 252 | "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=" 253 | }, 254 | "esprima": { 255 | "version": "4.0.1", 256 | "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", 257 | "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==" 258 | }, 259 | "extend-shallow": { 260 | "version": "2.0.1", 261 | "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", 262 | "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", 263 | "requires": { 264 | "is-extendable": "^0.1.0" 265 | } 266 | }, 267 | "extract-zip": { 268 | "version": "2.0.1", 269 | "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-2.0.1.tgz", 270 | "integrity": "sha512-GDhU9ntwuKyGXdZBUgTIe+vXnWj0fppUEtMDL0+idd5Sta8TGpHssn/eusA9mrPr9qNDym6SxAYZjNvCn/9RBg==", 271 | "requires": { 272 | "@types/yauzl": "^2.9.1", 273 | "debug": "^4.1.1", 274 | "get-stream": "^5.1.0", 275 | "yauzl": "^2.10.0" 276 | } 277 | }, 278 | "fast-url-parser": { 279 | "version": "1.1.3", 280 | "resolved": "https://registry.npmjs.org/fast-url-parser/-/fast-url-parser-1.1.3.tgz", 281 | "integrity": "sha1-9K8+qfNNiicc9YrSs3WfQx8LMY0=", 282 | "requires": { 283 | "punycode": "^1.3.2" 284 | } 285 | }, 286 | "fd-slicer": { 287 | "version": "1.1.0", 288 | "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", 289 | "integrity": "sha1-JcfInLH5B3+IkbvmHY85Dq4lbx4=", 290 | "requires": { 291 | "pend": "~1.2.0" 292 | } 293 | }, 294 | "figures": { 295 | "version": "1.7.0", 296 | "resolved": "https://registry.npmjs.org/figures/-/figures-1.7.0.tgz", 297 | "integrity": "sha1-y+Hjr/zxzUS4DK3+0o3Hk6lwHS4=", 298 | "requires": { 299 | "escape-string-regexp": "^1.0.5", 300 | "object-assign": "^4.1.0" 301 | } 302 | }, 303 | "fill-range": { 304 | "version": "7.0.1", 305 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 306 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 307 | "requires": { 308 | "to-regex-range": "^5.0.1" 309 | } 310 | }, 311 | "find-up": { 312 | "version": "4.1.0", 313 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", 314 | "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", 315 | "requires": { 316 | "locate-path": "^5.0.0", 317 | "path-exists": "^4.0.0" 318 | } 319 | }, 320 | "fs-constants": { 321 | "version": "1.0.0", 322 | "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", 323 | "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" 324 | }, 325 | "fs.realpath": { 326 | "version": "1.0.0", 327 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 328 | "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=" 329 | }, 330 | "fsevents": { 331 | "version": "2.3.2", 332 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", 333 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", 334 | "optional": true 335 | }, 336 | "get-port": { 337 | "version": "5.1.1", 338 | "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", 339 | "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==" 340 | }, 341 | "get-stdin": { 342 | "version": "8.0.0", 343 | "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-8.0.0.tgz", 344 | "integrity": "sha512-sY22aA6xchAzprjyqmSEQv4UbAAzRN0L2dQB0NlN5acTTK9Don6nhoc3eAbUnpZiCANAMfd/+40kVdKfFygohg==" 345 | }, 346 | "get-stream": { 347 | "version": "5.2.0", 348 | "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", 349 | "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", 350 | "requires": { 351 | "pump": "^3.0.0" 352 | } 353 | }, 354 | "glob": { 355 | "version": "7.2.0", 356 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.0.tgz", 357 | "integrity": "sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q==", 358 | "requires": { 359 | "fs.realpath": "^1.0.0", 360 | "inflight": "^1.0.4", 361 | "inherits": "2", 362 | "minimatch": "^3.0.4", 363 | "once": "^1.3.0", 364 | "path-is-absolute": "^1.0.0" 365 | } 366 | }, 367 | "glob-parent": { 368 | "version": "5.1.2", 369 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 370 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 371 | "requires": { 372 | "is-glob": "^4.0.1" 373 | } 374 | }, 375 | "gray-matter": { 376 | "version": "4.0.3", 377 | "resolved": "https://registry.npmjs.org/gray-matter/-/gray-matter-4.0.3.tgz", 378 | "integrity": "sha512-5v6yZd4JK3eMI3FqqCouswVqwugaA9r4dNZB1wwcmrD02QkV5H0y7XBQW8QwQqEaZY1pM9aqORSORhJRdNK44Q==", 379 | "requires": { 380 | "js-yaml": "^3.13.1", 381 | "kind-of": "^6.0.2", 382 | "section-matter": "^1.0.0", 383 | "strip-bom-string": "^1.0.0" 384 | } 385 | }, 386 | "has-ansi": { 387 | "version": "2.0.0", 388 | "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", 389 | "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", 390 | "requires": { 391 | "ansi-regex": "^2.0.0" 392 | } 393 | }, 394 | "has-flag": { 395 | "version": "4.0.0", 396 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 397 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" 398 | }, 399 | "highlight.js": { 400 | "version": "11.2.0", 401 | "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-11.2.0.tgz", 402 | "integrity": "sha512-JOySjtOEcyG8s4MLR2MNbLUyaXqUunmSnL2kdV/KuGJOmHZuAR5xC54Ko7goAXBWNhf09Vy3B+U7vR62UZ/0iw==" 403 | }, 404 | "https-proxy-agent": { 405 | "version": "5.0.0", 406 | "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz", 407 | "integrity": "sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA==", 408 | "requires": { 409 | "agent-base": "6", 410 | "debug": "4" 411 | } 412 | }, 413 | "iconv-lite": { 414 | "version": "0.6.3", 415 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", 416 | "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", 417 | "requires": { 418 | "safer-buffer": ">= 2.1.2 < 3.0.0" 419 | } 420 | }, 421 | "ieee754": { 422 | "version": "1.2.1", 423 | "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", 424 | "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==" 425 | }, 426 | "indent-string": { 427 | "version": "3.2.0", 428 | "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", 429 | "integrity": "sha1-Sl/W0nzDMvN+VBmlBNu4NxBckok=" 430 | }, 431 | "inflight": { 432 | "version": "1.0.6", 433 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 434 | "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", 435 | "requires": { 436 | "once": "^1.3.0", 437 | "wrappy": "1" 438 | } 439 | }, 440 | "inherits": { 441 | "version": "2.0.4", 442 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 443 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" 444 | }, 445 | "is-binary-path": { 446 | "version": "2.1.0", 447 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", 448 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", 449 | "requires": { 450 | "binary-extensions": "^2.0.0" 451 | } 452 | }, 453 | "is-extendable": { 454 | "version": "0.1.1", 455 | "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", 456 | "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=" 457 | }, 458 | "is-extglob": { 459 | "version": "2.1.1", 460 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 461 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=" 462 | }, 463 | "is-fullwidth-code-point": { 464 | "version": "1.0.0", 465 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", 466 | "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", 467 | "requires": { 468 | "number-is-nan": "^1.0.0" 469 | } 470 | }, 471 | "is-glob": { 472 | "version": "4.0.3", 473 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 474 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 475 | "requires": { 476 | "is-extglob": "^2.1.1" 477 | } 478 | }, 479 | "is-number": { 480 | "version": "7.0.0", 481 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 482 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==" 483 | }, 484 | "is-observable": { 485 | "version": "1.1.0", 486 | "resolved": "https://registry.npmjs.org/is-observable/-/is-observable-1.1.0.tgz", 487 | "integrity": "sha512-NqCa4Sa2d+u7BWc6CukaObG3Fh+CU9bvixbpcXYhy2VvYS7vVGIdAgnIS5Ks3A/cqk4rebLJ9s8zBstT2aKnIA==", 488 | "requires": { 489 | "symbol-observable": "^1.1.0" 490 | } 491 | }, 492 | "is-promise": { 493 | "version": "2.2.2", 494 | "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.2.2.tgz", 495 | "integrity": "sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==" 496 | }, 497 | "is-stream": { 498 | "version": "1.1.0", 499 | "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", 500 | "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=" 501 | }, 502 | "js-yaml": { 503 | "version": "3.14.1", 504 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", 505 | "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", 506 | "requires": { 507 | "argparse": "^1.0.7", 508 | "esprima": "^4.0.0" 509 | } 510 | }, 511 | "kind-of": { 512 | "version": "6.0.3", 513 | "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", 514 | "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" 515 | }, 516 | "listr": { 517 | "version": "0.14.3", 518 | "resolved": "https://registry.npmjs.org/listr/-/listr-0.14.3.tgz", 519 | "integrity": "sha512-RmAl7su35BFd/xoMamRjpIE4j3v+L28o8CT5YhAXQJm1fD+1l9ngXY8JAQRJ+tFK2i5njvi0iRUKV09vPwA0iA==", 520 | "requires": { 521 | "@samverschueren/stream-to-observable": "^0.3.0", 522 | "is-observable": "^1.1.0", 523 | "is-promise": "^2.1.0", 524 | "is-stream": "^1.1.0", 525 | "listr-silent-renderer": "^1.1.1", 526 | "listr-update-renderer": "^0.5.0", 527 | "listr-verbose-renderer": "^0.5.0", 528 | "p-map": "^2.0.0", 529 | "rxjs": "^6.3.3" 530 | } 531 | }, 532 | "listr-silent-renderer": { 533 | "version": "1.1.1", 534 | "resolved": "https://registry.npmjs.org/listr-silent-renderer/-/listr-silent-renderer-1.1.1.tgz", 535 | "integrity": "sha1-kktaN1cVN3C/Go4/v3S4u/P5JC4=" 536 | }, 537 | "listr-update-renderer": { 538 | "version": "0.5.0", 539 | "resolved": "https://registry.npmjs.org/listr-update-renderer/-/listr-update-renderer-0.5.0.tgz", 540 | "integrity": "sha512-tKRsZpKz8GSGqoI/+caPmfrypiaq+OQCbd+CovEC24uk1h952lVj5sC7SqyFUm+OaJ5HN/a1YLt5cit2FMNsFA==", 541 | "requires": { 542 | "chalk": "^1.1.3", 543 | "cli-truncate": "^0.2.1", 544 | "elegant-spinner": "^1.0.1", 545 | "figures": "^1.7.0", 546 | "indent-string": "^3.0.0", 547 | "log-symbols": "^1.0.2", 548 | "log-update": "^2.3.0", 549 | "strip-ansi": "^3.0.1" 550 | }, 551 | "dependencies": { 552 | "ansi-styles": { 553 | "version": "2.2.1", 554 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", 555 | "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" 556 | }, 557 | "chalk": { 558 | "version": "1.1.3", 559 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", 560 | "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", 561 | "requires": { 562 | "ansi-styles": "^2.2.1", 563 | "escape-string-regexp": "^1.0.2", 564 | "has-ansi": "^2.0.0", 565 | "strip-ansi": "^3.0.0", 566 | "supports-color": "^2.0.0" 567 | } 568 | }, 569 | "supports-color": { 570 | "version": "2.0.0", 571 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", 572 | "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" 573 | } 574 | } 575 | }, 576 | "listr-verbose-renderer": { 577 | "version": "0.5.0", 578 | "resolved": "https://registry.npmjs.org/listr-verbose-renderer/-/listr-verbose-renderer-0.5.0.tgz", 579 | "integrity": "sha512-04PDPqSlsqIOaaaGZ+41vq5FejI9auqTInicFRndCBgE3bXG8D6W1I+mWhk+1nqbHmyhla/6BUrd5OSiHwKRXw==", 580 | "requires": { 581 | "chalk": "^2.4.1", 582 | "cli-cursor": "^2.1.0", 583 | "date-fns": "^1.27.2", 584 | "figures": "^2.0.0" 585 | }, 586 | "dependencies": { 587 | "ansi-styles": { 588 | "version": "3.2.1", 589 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", 590 | "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", 591 | "requires": { 592 | "color-convert": "^1.9.0" 593 | } 594 | }, 595 | "chalk": { 596 | "version": "2.4.2", 597 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", 598 | "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", 599 | "requires": { 600 | "ansi-styles": "^3.2.1", 601 | "escape-string-regexp": "^1.0.5", 602 | "supports-color": "^5.3.0" 603 | } 604 | }, 605 | "color-convert": { 606 | "version": "1.9.3", 607 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", 608 | "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", 609 | "requires": { 610 | "color-name": "1.1.3" 611 | } 612 | }, 613 | "color-name": { 614 | "version": "1.1.3", 615 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", 616 | "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" 617 | }, 618 | "figures": { 619 | "version": "2.0.0", 620 | "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", 621 | "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", 622 | "requires": { 623 | "escape-string-regexp": "^1.0.5" 624 | } 625 | }, 626 | "has-flag": { 627 | "version": "3.0.0", 628 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", 629 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=" 630 | }, 631 | "supports-color": { 632 | "version": "5.5.0", 633 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", 634 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", 635 | "requires": { 636 | "has-flag": "^3.0.0" 637 | } 638 | } 639 | } 640 | }, 641 | "locate-path": { 642 | "version": "5.0.0", 643 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", 644 | "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", 645 | "requires": { 646 | "p-locate": "^4.1.0" 647 | } 648 | }, 649 | "log-symbols": { 650 | "version": "1.0.2", 651 | "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-1.0.2.tgz", 652 | "integrity": "sha1-N2/3tY6jCGoPCfrMdGF+ylAeGhg=", 653 | "requires": { 654 | "chalk": "^1.0.0" 655 | }, 656 | "dependencies": { 657 | "ansi-styles": { 658 | "version": "2.2.1", 659 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", 660 | "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=" 661 | }, 662 | "chalk": { 663 | "version": "1.1.3", 664 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", 665 | "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", 666 | "requires": { 667 | "ansi-styles": "^2.2.1", 668 | "escape-string-regexp": "^1.0.2", 669 | "has-ansi": "^2.0.0", 670 | "strip-ansi": "^3.0.0", 671 | "supports-color": "^2.0.0" 672 | } 673 | }, 674 | "supports-color": { 675 | "version": "2.0.0", 676 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", 677 | "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=" 678 | } 679 | } 680 | }, 681 | "log-update": { 682 | "version": "2.3.0", 683 | "resolved": "https://registry.npmjs.org/log-update/-/log-update-2.3.0.tgz", 684 | "integrity": "sha1-iDKP19HOeTiykoN0bwsbwSayRwg=", 685 | "requires": { 686 | "ansi-escapes": "^3.0.0", 687 | "cli-cursor": "^2.0.0", 688 | "wrap-ansi": "^3.0.1" 689 | } 690 | }, 691 | "lru-cache": { 692 | "version": "6.0.0", 693 | "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", 694 | "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", 695 | "requires": { 696 | "yallist": "^4.0.0" 697 | } 698 | }, 699 | "marked": { 700 | "version": "3.0.4", 701 | "resolved": "https://registry.npmjs.org/marked/-/marked-3.0.4.tgz", 702 | "integrity": "sha512-jBo8AOayNaEcvBhNobg6/BLhdsK3NvnKWJg33MAAPbvTWiG4QBn9gpW1+7RssrKu4K1dKlN+0goVQwV41xEfOA==" 703 | }, 704 | "md-to-pdf": { 705 | "version": "5.0.0", 706 | "resolved": "https://registry.npmjs.org/md-to-pdf/-/md-to-pdf-5.0.0.tgz", 707 | "integrity": "sha512-1cdc3qm9jkJBQEqgGzhFXtiLhPxg40G2/dLDvoHwrh2XaHkzoNXxFrSBi8wcMX1ceI35v7/LvZscSFiV+8WyBg==", 708 | "requires": { 709 | "arg": "5.0.1", 710 | "chalk": "4.1.2", 711 | "chokidar": "3.5.2", 712 | "get-port": "5.1.1", 713 | "get-stdin": "8.0.0", 714 | "gray-matter": "4.0.3", 715 | "highlight.js": "11.2.0", 716 | "iconv-lite": "0.6.3", 717 | "listr": "0.14.3", 718 | "marked": "3.0.4", 719 | "puppeteer": ">=8.0.0", 720 | "semver": "7.3.5", 721 | "serve-handler": "6.1.3" 722 | } 723 | }, 724 | "mime-db": { 725 | "version": "1.33.0", 726 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.33.0.tgz", 727 | "integrity": "sha512-BHJ/EKruNIqJf/QahvxwQZXKygOQ256myeN/Ew+THcAa5q+PjyTTMMeNQC4DZw5AwfvelsUrA6B67NKMqXDbzQ==" 728 | }, 729 | "mime-types": { 730 | "version": "2.1.18", 731 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.18.tgz", 732 | "integrity": "sha512-lc/aahn+t4/SWV/qcmumYjymLsWfN3ELhpmVuUFjgsORruuZPVSwAQryq+HHGvO/SI2KVX26bx+En+zhM8g8hQ==", 733 | "requires": { 734 | "mime-db": "~1.33.0" 735 | } 736 | }, 737 | "mimic-fn": { 738 | "version": "1.2.0", 739 | "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", 740 | "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==" 741 | }, 742 | "minimatch": { 743 | "version": "3.0.4", 744 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", 745 | "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", 746 | "requires": { 747 | "brace-expansion": "^1.1.7" 748 | } 749 | }, 750 | "mkdirp-classic": { 751 | "version": "0.5.3", 752 | "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", 753 | "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" 754 | }, 755 | "ms": { 756 | "version": "2.1.2", 757 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 758 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" 759 | }, 760 | "node-fetch": { 761 | "version": "2.6.5", 762 | "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.5.tgz", 763 | "integrity": "sha512-mmlIVHJEu5rnIxgEgez6b9GgWXbkZj5YZ7fx+2r94a2E+Uirsp6HsPTPlomfdHtpt/B0cdKviwkoaM6pyvUOpQ==", 764 | "requires": { 765 | "whatwg-url": "^5.0.0" 766 | } 767 | }, 768 | "normalize-path": { 769 | "version": "3.0.0", 770 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", 771 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==" 772 | }, 773 | "number-is-nan": { 774 | "version": "1.0.1", 775 | "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", 776 | "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=" 777 | }, 778 | "object-assign": { 779 | "version": "4.1.1", 780 | "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", 781 | "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" 782 | }, 783 | "once": { 784 | "version": "1.4.0", 785 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 786 | "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", 787 | "requires": { 788 | "wrappy": "1" 789 | } 790 | }, 791 | "onetime": { 792 | "version": "2.0.1", 793 | "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", 794 | "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", 795 | "requires": { 796 | "mimic-fn": "^1.0.0" 797 | } 798 | }, 799 | "p-limit": { 800 | "version": "2.3.0", 801 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", 802 | "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", 803 | "requires": { 804 | "p-try": "^2.0.0" 805 | } 806 | }, 807 | "p-locate": { 808 | "version": "4.1.0", 809 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", 810 | "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", 811 | "requires": { 812 | "p-limit": "^2.2.0" 813 | } 814 | }, 815 | "p-map": { 816 | "version": "2.1.0", 817 | "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", 818 | "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==" 819 | }, 820 | "p-try": { 821 | "version": "2.2.0", 822 | "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", 823 | "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==" 824 | }, 825 | "path-exists": { 826 | "version": "4.0.0", 827 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 828 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==" 829 | }, 830 | "path-is-absolute": { 831 | "version": "1.0.1", 832 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 833 | "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=" 834 | }, 835 | "path-is-inside": { 836 | "version": "1.0.2", 837 | "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", 838 | "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=" 839 | }, 840 | "path-to-regexp": { 841 | "version": "2.2.1", 842 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-2.2.1.tgz", 843 | "integrity": "sha512-gu9bD6Ta5bwGrrU8muHzVOBFFREpp2iRkVfhBJahwJ6p6Xw20SjT0MxLnwkjOibQmGSYhiUnf2FLe7k+jcFmGQ==" 844 | }, 845 | "pend": { 846 | "version": "1.2.0", 847 | "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", 848 | "integrity": "sha1-elfrVQpng/kRUzH89GY9XI4AelA=" 849 | }, 850 | "picomatch": { 851 | "version": "2.3.0", 852 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", 853 | "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==" 854 | }, 855 | "pkg-dir": { 856 | "version": "4.2.0", 857 | "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", 858 | "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", 859 | "requires": { 860 | "find-up": "^4.0.0" 861 | } 862 | }, 863 | "progress": { 864 | "version": "2.0.3", 865 | "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", 866 | "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==" 867 | }, 868 | "proxy-from-env": { 869 | "version": "1.1.0", 870 | "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", 871 | "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" 872 | }, 873 | "pump": { 874 | "version": "3.0.0", 875 | "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", 876 | "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", 877 | "requires": { 878 | "end-of-stream": "^1.1.0", 879 | "once": "^1.3.1" 880 | } 881 | }, 882 | "punycode": { 883 | "version": "1.4.1", 884 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", 885 | "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=" 886 | }, 887 | "puppeteer": { 888 | "version": "13.0.0", 889 | "resolved": "https://registry.npmjs.org/puppeteer/-/puppeteer-13.0.0.tgz", 890 | "integrity": "sha512-kZfGAieIVSo4bFqYuvY2KvhgP9txzmPbbnpZIzLlfdt8nEu9evXEwsbBt1BHocVQM4fJmCiS+FRyw7c8aWadNg==", 891 | "requires": { 892 | "debug": "4.3.2", 893 | "devtools-protocol": "0.0.937139", 894 | "extract-zip": "2.0.1", 895 | "https-proxy-agent": "5.0.0", 896 | "node-fetch": "2.6.5", 897 | "pkg-dir": "4.2.0", 898 | "progress": "2.0.3", 899 | "proxy-from-env": "1.1.0", 900 | "rimraf": "3.0.2", 901 | "tar-fs": "2.1.1", 902 | "unbzip2-stream": "1.4.3", 903 | "ws": "8.2.3" 904 | } 905 | }, 906 | "range-parser": { 907 | "version": "1.2.0", 908 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.0.tgz", 909 | "integrity": "sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=" 910 | }, 911 | "readable-stream": { 912 | "version": "3.6.0", 913 | "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", 914 | "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", 915 | "requires": { 916 | "inherits": "^2.0.3", 917 | "string_decoder": "^1.1.1", 918 | "util-deprecate": "^1.0.1" 919 | } 920 | }, 921 | "readdirp": { 922 | "version": "3.6.0", 923 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", 924 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", 925 | "requires": { 926 | "picomatch": "^2.2.1" 927 | } 928 | }, 929 | "restore-cursor": { 930 | "version": "2.0.0", 931 | "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", 932 | "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", 933 | "requires": { 934 | "onetime": "^2.0.0", 935 | "signal-exit": "^3.0.2" 936 | } 937 | }, 938 | "rimraf": { 939 | "version": "3.0.2", 940 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 941 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 942 | "requires": { 943 | "glob": "^7.1.3" 944 | } 945 | }, 946 | "rxjs": { 947 | "version": "6.6.7", 948 | "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", 949 | "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", 950 | "requires": { 951 | "tslib": "^1.9.0" 952 | } 953 | }, 954 | "safe-buffer": { 955 | "version": "5.2.1", 956 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", 957 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==" 958 | }, 959 | "safer-buffer": { 960 | "version": "2.1.2", 961 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", 962 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" 963 | }, 964 | "section-matter": { 965 | "version": "1.0.0", 966 | "resolved": "https://registry.npmjs.org/section-matter/-/section-matter-1.0.0.tgz", 967 | "integrity": "sha512-vfD3pmTzGpufjScBh50YHKzEu2lxBWhVEHsNGoEXmCmn2hKGfeNLYMzCJpe8cD7gqX7TJluOVpBkAequ6dgMmA==", 968 | "requires": { 969 | "extend-shallow": "^2.0.1", 970 | "kind-of": "^6.0.0" 971 | } 972 | }, 973 | "semver": { 974 | "version": "7.3.5", 975 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", 976 | "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", 977 | "requires": { 978 | "lru-cache": "^6.0.0" 979 | } 980 | }, 981 | "serve-handler": { 982 | "version": "6.1.3", 983 | "resolved": "https://registry.npmjs.org/serve-handler/-/serve-handler-6.1.3.tgz", 984 | "integrity": "sha512-FosMqFBNrLyeiIDvP1zgO6YoTzFYHxLDEIavhlmQ+knB2Z7l1t+kGLHkZIDN7UVWqQAmKI3D20A6F6jo3nDd4w==", 985 | "requires": { 986 | "bytes": "3.0.0", 987 | "content-disposition": "0.5.2", 988 | "fast-url-parser": "1.1.3", 989 | "mime-types": "2.1.18", 990 | "minimatch": "3.0.4", 991 | "path-is-inside": "1.0.2", 992 | "path-to-regexp": "2.2.1", 993 | "range-parser": "1.2.0" 994 | } 995 | }, 996 | "signal-exit": { 997 | "version": "3.0.6", 998 | "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.6.tgz", 999 | "integrity": "sha512-sDl4qMFpijcGw22U5w63KmD3cZJfBuFlVNbVMKje2keoKML7X2UzWbc4XrmEbDwg0NXJc3yv4/ox7b+JWb57kQ==" 1000 | }, 1001 | "slice-ansi": { 1002 | "version": "0.0.4", 1003 | "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-0.0.4.tgz", 1004 | "integrity": "sha1-7b+JA/ZvfOL46v1s7tZeJkyDGzU=" 1005 | }, 1006 | "sprintf-js": { 1007 | "version": "1.0.3", 1008 | "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", 1009 | "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=" 1010 | }, 1011 | "string-width": { 1012 | "version": "1.0.2", 1013 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", 1014 | "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", 1015 | "requires": { 1016 | "code-point-at": "^1.0.0", 1017 | "is-fullwidth-code-point": "^1.0.0", 1018 | "strip-ansi": "^3.0.0" 1019 | } 1020 | }, 1021 | "string_decoder": { 1022 | "version": "1.3.0", 1023 | "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", 1024 | "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", 1025 | "requires": { 1026 | "safe-buffer": "~5.2.0" 1027 | } 1028 | }, 1029 | "strip-ansi": { 1030 | "version": "3.0.1", 1031 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", 1032 | "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", 1033 | "requires": { 1034 | "ansi-regex": "^2.0.0" 1035 | } 1036 | }, 1037 | "strip-bom-string": { 1038 | "version": "1.0.0", 1039 | "resolved": "https://registry.npmjs.org/strip-bom-string/-/strip-bom-string-1.0.0.tgz", 1040 | "integrity": "sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=" 1041 | }, 1042 | "supports-color": { 1043 | "version": "7.2.0", 1044 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1045 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1046 | "requires": { 1047 | "has-flag": "^4.0.0" 1048 | } 1049 | }, 1050 | "symbol-observable": { 1051 | "version": "1.2.0", 1052 | "resolved": "https://registry.npmjs.org/symbol-observable/-/symbol-observable-1.2.0.tgz", 1053 | "integrity": "sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==" 1054 | }, 1055 | "tar-fs": { 1056 | "version": "2.1.1", 1057 | "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", 1058 | "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", 1059 | "requires": { 1060 | "chownr": "^1.1.1", 1061 | "mkdirp-classic": "^0.5.2", 1062 | "pump": "^3.0.0", 1063 | "tar-stream": "^2.1.4" 1064 | } 1065 | }, 1066 | "tar-stream": { 1067 | "version": "2.2.0", 1068 | "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", 1069 | "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", 1070 | "requires": { 1071 | "bl": "^4.0.3", 1072 | "end-of-stream": "^1.4.1", 1073 | "fs-constants": "^1.0.0", 1074 | "inherits": "^2.0.3", 1075 | "readable-stream": "^3.1.1" 1076 | } 1077 | }, 1078 | "through": { 1079 | "version": "2.3.8", 1080 | "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", 1081 | "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=" 1082 | }, 1083 | "to-regex-range": { 1084 | "version": "5.0.1", 1085 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1086 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1087 | "requires": { 1088 | "is-number": "^7.0.0" 1089 | } 1090 | }, 1091 | "tr46": { 1092 | "version": "0.0.3", 1093 | "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", 1094 | "integrity": "sha1-gYT9NH2snNwYWZLzpmIuFLnZq2o=" 1095 | }, 1096 | "tslib": { 1097 | "version": "1.14.1", 1098 | "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", 1099 | "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" 1100 | }, 1101 | "unbzip2-stream": { 1102 | "version": "1.4.3", 1103 | "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", 1104 | "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", 1105 | "requires": { 1106 | "buffer": "^5.2.1", 1107 | "through": "^2.3.8" 1108 | } 1109 | }, 1110 | "util-deprecate": { 1111 | "version": "1.0.2", 1112 | "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", 1113 | "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=" 1114 | }, 1115 | "webidl-conversions": { 1116 | "version": "3.0.1", 1117 | "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", 1118 | "integrity": "sha1-JFNCdeKnvGvnvIZhHMFq4KVlSHE=" 1119 | }, 1120 | "whatwg-url": { 1121 | "version": "5.0.0", 1122 | "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", 1123 | "integrity": "sha1-lmRU6HZUYuN2RNNib2dCzotwll0=", 1124 | "requires": { 1125 | "tr46": "~0.0.3", 1126 | "webidl-conversions": "^3.0.0" 1127 | } 1128 | }, 1129 | "wrap-ansi": { 1130 | "version": "3.0.1", 1131 | "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-3.0.1.tgz", 1132 | "integrity": "sha1-KIoE2H7aXChuBg3+jxNc6NAH+Lo=", 1133 | "requires": { 1134 | "string-width": "^2.1.1", 1135 | "strip-ansi": "^4.0.0" 1136 | }, 1137 | "dependencies": { 1138 | "ansi-regex": { 1139 | "version": "3.0.0", 1140 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", 1141 | "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=" 1142 | }, 1143 | "is-fullwidth-code-point": { 1144 | "version": "2.0.0", 1145 | "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", 1146 | "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=" 1147 | }, 1148 | "string-width": { 1149 | "version": "2.1.1", 1150 | "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", 1151 | "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", 1152 | "requires": { 1153 | "is-fullwidth-code-point": "^2.0.0", 1154 | "strip-ansi": "^4.0.0" 1155 | } 1156 | }, 1157 | "strip-ansi": { 1158 | "version": "4.0.0", 1159 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", 1160 | "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", 1161 | "requires": { 1162 | "ansi-regex": "^3.0.0" 1163 | } 1164 | } 1165 | } 1166 | }, 1167 | "wrappy": { 1168 | "version": "1.0.2", 1169 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1170 | "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=" 1171 | }, 1172 | "ws": { 1173 | "version": "8.2.3", 1174 | "resolved": "https://registry.npmjs.org/ws/-/ws-8.2.3.tgz", 1175 | "integrity": "sha512-wBuoj1BDpC6ZQ1B7DWQBYVLphPWkm8i9Y0/3YdHjHKHiohOJ1ws+3OccDWtH+PoC9DZD5WOTrJvNbWvjS6JWaA==" 1176 | }, 1177 | "yallist": { 1178 | "version": "4.0.0", 1179 | "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", 1180 | "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" 1181 | }, 1182 | "yauzl": { 1183 | "version": "2.10.0", 1184 | "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", 1185 | "integrity": "sha1-x+sXyT4RLLEIb6bY5R+wZnt5pfk=", 1186 | "requires": { 1187 | "buffer-crc32": "~0.2.3", 1188 | "fd-slicer": "~1.1.0" 1189 | } 1190 | } 1191 | } 1192 | } 1193 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ml-project-checklist", 3 | "version": "1.0.0", 4 | "repository": { 5 | "type": "git", 6 | "url": "git+https://github.com/sjosund/ml-project-checklist.git" 7 | }, 8 | "author": "Lars Lowe Sjösund", 9 | "license": "MIT", 10 | "bugs": { 11 | "url": "https://github.com/sjosund/ml-project-checklist/issues" 12 | }, 13 | "homepage": "https://github.com/sjosund/ml-project-checklist#readme", 14 | "dependencies": { 15 | "md-to-pdf": "^5.0.0" 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | body { 2 | font: "Times New Roman" 3 | } 4 | 5 | ol,ul { 6 | list-style: none; 7 | } 8 | 9 | li { 10 | margin: 0 0 7px -35px; 11 | max-width: 500px; 12 | } 13 | 14 | h2, h3 { 15 | margin: 10px 0 0 0; 16 | } 17 | --------------------------------------------------------------------------------