├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .flowconfig ├── .github └── workflows │ └── deploy-pages.yml ├── .gitignore ├── .prettierrc ├── README.md ├── flow-typed └── npm │ ├── algoliasearch_v3.x.x.js │ ├── autoprefixer_vx.x.x.js │ ├── babel-core_vx.x.x.js │ ├── babel-eslint_vx.x.x.js │ ├── babel-loader_vx.x.x.js │ ├── babel-plugin-add-module-exports_vx.x.x.js │ ├── babel-plugin-lodash_vx.x.x.js │ ├── babel-plugin-transform-class-properties_vx.x.x.js │ ├── babel-plugin-transform-dev_vx.x.x.js │ ├── babel-plugin-transform-proto-to-assign_vx.x.x.js │ ├── babel-plugin-transform-runtime_vx.x.x.js │ ├── babel-polyfill_vx.x.x.js │ ├── babel-preset-env_vx.x.x.js │ ├── babel-preset-react_vx.x.x.js │ ├── babel-preset-rsuite_vx.x.x.js │ ├── babel-preset-stage-1_vx.x.x.js │ ├── brfs_vx.x.x.js │ ├── chai_v3.5.x.js │ ├── chartist_vx.x.x.js │ ├── child-process-promise_vx.x.x.js │ ├── classnames_v2.x.x.js │ ├── compression-webpack-plugin_vx.x.x.js │ ├── css-loader_vx.x.x.js │ ├── cssnano_vx.x.x.js │ ├── eslint-plugin-babel_vx.x.x.js │ ├── eslint-plugin-react_vx.x.x.js │ ├── eslint_vx.x.x.js │ ├── extract-text-webpack-plugin_vx.x.x.js │ ├── file-loader_vx.x.x.js │ ├── flow-bin_v0.x.x.js │ ├── fs-promise_vx.x.x.js │ ├── gh-pages_vx.x.x.js │ ├── glob_vx.x.x.js │ ├── html-loader_vx.x.x.js │ ├── html-webpack-plugin_vx.x.x.js │ ├── karma_vx.x.x.js │ ├── less-loader_vx.x.x.js │ ├── less_vx.x.x.js │ ├── lodash-webpack-plugin_vx.x.x.js │ ├── lodash_v4.x.x.js │ ├── mocha_v2.4.x.js │ ├── moment_v2.3.x.js │ ├── moment_vx.x.x.js │ ├── npm_vx.x.x.js │ ├── output-file-sync_vx.x.x.js │ ├── postcss-loader_vx.x.x.js │ ├── prop-types_v15.x.x.js │ ├── react-chartist_vx.x.x.js │ ├── react-hot-loader_vx.x.x.js │ ├── react-intl_v2.x.x.js │ ├── react-router_vx.x.x.js │ ├── rimraf_v2.x.x.js │ ├── rsuite-utils_vx.x.x.js │ ├── rsuite_v3.x.x.js │ ├── sinon-chai_vx.x.x.js │ ├── sinon_vx.x.x.js │ ├── style-loader_vx.x.x.js │ ├── svg-sprite-loader_vx.x.x.js │ ├── transform-loader_vx.x.x.js │ ├── url-loader_vx.x.x.js │ ├── webpack-bundle-analyzer_vx.x.x.js │ ├── webpack-cli_vx.x.x.js │ ├── webpack-dev-server_vx.x.x.js │ ├── webpack_vx.x.x.js │ └── why-did-you-update_v0.x.x.js ├── gh-pages.js ├── package.json ├── postcss.config.js ├── public ├── _redirects ├── favicon.ico ├── logo.png └── resources │ └── loading.css ├── screenshot └── wakatime-dashboard.jpg ├── src ├── App.js ├── components │ ├── ErrorPage │ │ ├── ErrorPage.js │ │ ├── index.js │ │ └── styles.less │ ├── Frame │ │ ├── Footer.js │ │ ├── Frame.js │ │ ├── NavToggle.js │ │ ├── index.js │ │ └── styles.less │ ├── HeaderAvatar │ │ ├── HeaderAvatar.js │ │ ├── index.js │ │ └── styles.less │ └── index.js ├── constants │ └── index.js ├── images │ ├── charts │ │ ├── index.js │ │ ├── pv.svg │ │ ├── uv.svg │ │ └── vv.svg │ ├── errors │ │ ├── 404.svg │ │ ├── 500.svg │ │ └── index.js │ └── favicon.ico ├── index.html ├── index.js ├── locales │ ├── en-US │ │ └── index.js │ ├── index.js │ └── zh-CN │ │ └── index.js ├── polyfills.js ├── ready.js ├── routes │ ├── dashboard │ │ ├── Dashboard.js │ │ ├── DatePicker.js │ │ ├── LineChart.js │ │ ├── StackedColumnChart.js │ │ ├── index.js │ │ └── styles.less │ ├── error │ │ ├── 404 │ │ │ ├── Error404.js │ │ │ └── index.js │ │ ├── 500 │ │ │ ├── Error500.js │ │ │ └── index.js │ │ └── index.js │ ├── index.js │ ├── login │ │ ├── Login.js │ │ ├── index.js │ │ └── styles.less │ └── main.js ├── styles │ └── index.less └── utils │ ├── formatValue.js │ ├── highlightValue.js │ ├── index.js │ ├── toThousands.js │ └── utils.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["env", "stage-1", "react", "rsuite"], 3 | "plugins": [ 4 | "lodash", 5 | "transform-proto-to-assign", 6 | "transform-runtime", 7 | "add-module-exports", 8 | "react-hot-loader/babel", 9 | "transform-dev" 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | 3 | root = true 4 | 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_style = space 9 | indent_size = 2 10 | trim_trailing_whitespace = true 11 | insert_final_newline = true 12 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | const OFF = 0; 4 | // const WARNING = 1; 5 | const ERROR = 2; 6 | 7 | module.exports = { 8 | env: { 9 | browser: true, 10 | es6: true 11 | }, 12 | parser: 'babel-eslint', 13 | plugins: ['babel'], 14 | parserOptions: { 15 | ecmaVersion: 6, 16 | sourceType: 'module', 17 | ecmaFeatures: { 18 | jsx: true, 19 | experimentalObjectRestSpread: true 20 | } 21 | }, 22 | rules: { 23 | indent: [ERROR, 2, { SwitchCase: 1 }], //规定代码的缩进方式:2个空格 24 | camelcase: ERROR, //强制驼峰法命名 25 | curly: ERROR, //必须使用 if(){} 中的{} 26 | eqeqeq: ERROR, //必须使用全等 27 | 'brace-style': [ERROR, '1tbs'], //大括号风格 28 | quotes: [ERROR, 'single'], //引号类型 29 | semi: [ERROR, 'always'], //语句强制分号结尾 30 | 'space-infix-ops': ERROR, //中缀操作符周围要不要有空格 31 | 'no-param-reassign': OFF, //不允许对函数的形参进行赋值 32 | 'prefer-spread': ERROR, //首选展开运算 33 | 'comma-dangle': OFF, //不允许或强制在对象字面量或者数组属性的结尾使用逗号 34 | 'padded-blocks': OFF, //规定代码块前后是否要加空行 35 | 'prefer-const': OFF, 36 | 'no-var': OFF, 37 | 'one-var': OFF 38 | } 39 | }; 40 | -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- 1 | [ignore] 2 | .*/build/.* 3 | .*/node_modules/.* 4 | 5 | [include] 6 | 7 | [libs] 8 | /flow-typed 9 | 10 | [lints] 11 | 12 | 13 | [options] 14 | 15 | [strict] 16 | -------------------------------------------------------------------------------- /.github/workflows/deploy-pages.yml: -------------------------------------------------------------------------------- 1 | name: Build and Deploy to Github Pages 2 | 3 | on: 4 | push: 5 | branches: 6 | - master 7 | 8 | jobs: 9 | build-and-deploy: 10 | runs-on: ubuntu-latest 11 | steps: 12 | - name: Checkout 13 | uses: actions/checkout@master 14 | 15 | - name: Build and Deploy 16 | uses: JamesIves/github-pages-deploy-action@2.0.0 17 | env: 18 | ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} 19 | BRANCH: gh-pages 20 | FOLDER: dist 21 | BUILD_SCRIPT: npm install && npm run build 22 | 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | karma-* 6 | 7 | # Runtime data 8 | pids 9 | *.pid 10 | *.seed 11 | 12 | # Directory for instrumented libs generated by jscoverage/JSCover 13 | lib-cov 14 | 15 | # Coverage directory used by tools like istanbul 16 | coverage 17 | 18 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 19 | .grunt 20 | 21 | # node-waf configuration 22 | .lock-wscript 23 | 24 | # Compiled binary addons (http://nodejs.org/api/addons.html) 25 | build/Release 26 | 27 | # Dependency directory 28 | node_modules 29 | 30 | # Optional npm cache directory 31 | .npm 32 | 33 | # Optional REPL history 34 | .node_repl_history 35 | 36 | 37 | # custom 38 | 39 | .vscode 40 | .DS_Store 41 | .idea 42 | scripts 43 | build 44 | lib 45 | dist 46 | yarn.lock 47 | package-lock.json 48 | src/config.js -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 100, 3 | "tabWidth": 2, 4 | "singleQuote": true 5 | } 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Wakatime Dashboard 2 | >Wakatime Dashboard gets data from Gist. 3 | 4 | Wakatime Dashboard 用于显示从 WakaTime 备份到 Gist 的统计数据。 5 | 6 | ![Wakatime Dashboard](./screenshot/wakatime-dashboard.jpg) 7 | 8 | 你可以点击这里访问 [Wakatime Dashboard](https://wakatime.chenhuichao.com)(已经提供了默认的 GistId 作为演示,实际使用需要替换成自己的 Gist ID) 9 | 10 | 如果觉得对你有帮助,请点波 star 支持下作者,非常感谢~ 11 | 12 | ## 备份 WakaTime 数据到 Gist 13 | 关于如何备份 WakaTime 数据到 Gist 的具体请可以看:[wakatime-sync](https://github.com/superman66/wakatime-sync)。 14 | 15 | ## Usage 16 | 17 | ``` 18 | git clone https://github.com/superman66/wakatime-dashboard.git && cd wakatime-dashboard 19 | npm run dev 20 | ``` 21 | 22 | ## build 23 | 24 | ``` 25 | npm run build 26 | ``` 27 | -------------------------------------------------------------------------------- /flow-typed/npm/algoliasearch_v3.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 2b849e9475cf6c205eb91bef1cf09580 2 | // flow-typed version: 0850d53e97/algoliasearch_v3.x.x/flow_>=v0.56.x 3 | 4 | // @flow 5 | 6 | type JSONObject = mixed; 7 | type HTTPClient = any; 8 | type Callback = (error: ?Error, response: Response) => void; 9 | 10 | declare type $algolia$SearchIndexResponse = {| 11 | hits: Array, 12 | page: number, 13 | nbHits: number, 14 | nbPages: number, 15 | hitsPerPage: number, 16 | processingTimeMS: number, 17 | query: string, 18 | parsed_query: string, 19 | params: string, 20 | |}; 21 | 22 | declare type $algolia$SearchIndexMultiResponse = {| 23 | results: Array<$algolia$SearchIndexResponse>, 24 | |}; 25 | 26 | declare type $algoliasearch$Settings = {| 27 | // https://www.algolia.com/doc/rest-api/search/#ranking 28 | // Attributes 29 | searchableAttributes?: Array, 30 | attributesForFaceting?: Array, 31 | unretrievableAttributes?: Array, 32 | attributesToRetrieve?: Array | '*', 33 | 34 | // Ranking 35 | ranking?: Array, 36 | customRanking?: Array, 37 | replicas?: Array, 38 | 39 | // Faceting 40 | maxValuesPerFacet?: number, 41 | 42 | // Hightlighting & Snippeting 43 | attributesToHighlight?: Array, 44 | attributesToSnippet?: Array, 45 | hightlightPreTag?: string, 46 | hightlightPostTag?: string, 47 | snippetEllipsisText?: string, 48 | restrictHighlightAndSnippetArrays?: boolean, 49 | 50 | // Pagination 51 | hitsPerPage?: number, 52 | paginationLimitedTo?: number, 53 | 54 | // Typo 55 | minWordSizefor1Typo?: number, 56 | minWordSizefor2Typo?: number, 57 | typoTolerance?: string | boolean, 58 | allowTyposOnNumericTokens?: boolean, 59 | ignorePlurals?: boolean, 60 | disableTypoToleranceOnAttributes?: boolean, 61 | disableTypoToleranceOnWords?: boolean, 62 | separatorsToIndex?: string, 63 | |}; 64 | 65 | declare type $algoliasearch$ClientOptions = {| 66 | timeout?: number, 67 | protocol?: 'http:' | 'https:', 68 | httpClient?: HTTPClient, 69 | hosts?: {| 70 | read?: string, 71 | write?: string, 72 | |}, 73 | |}; 74 | 75 | declare type $algoliasearch$QueryParameters = 76 | | string 77 | | { 78 | advancedSyntax?: boolean, 79 | allowTyposOnNumericTokens?: boolean, 80 | alternativesAsExact?: any, 81 | analytics?: boolean, 82 | analyticsTags?: Array, 83 | aroundLatLng?: string, 84 | aroundLatLngViaIP?: string, 85 | aroundPrecision?: number, 86 | aroundRadius?: number | 'all', 87 | attributesToHighlight?: Array, 88 | attributesToRetrieve?: Array, 89 | attributesToSnippet?: Array, 90 | disableExactOnAttributes?: Array, 91 | disableTypoToleranceOnAttributes?: string, 92 | distinct?: any, 93 | exactOnSingleWordQuery?: string, 94 | facetFilters?: string, 95 | facets?: string, 96 | filters?: string, 97 | getRankingInfo?: boolean, 98 | highlightPostTag?: string, 99 | highlightPreTag?: string, 100 | hitsPerPage?: number, 101 | ignorePlurals?: boolean, 102 | insideBoundingBox?: number[][], 103 | insidePolygon?: number[][], 104 | length?: number, 105 | maxValuesPerFacet?: string, 106 | minimumAroundRadius?: number, 107 | minProximity?: number, 108 | minWordSizefor1Typo?: number, 109 | minWordSizefor2Typos?: number, 110 | numericAttributesToIndex?: Array, 111 | numericFilters?: Array, 112 | offset?: number, 113 | optionalWords?: Array, 114 | page?: number, 115 | query?: string, 116 | queryType?: any, 117 | removeStopWords?: Array, 118 | removeWordsIfNoResults?: string, 119 | replaceSynonymsInHighlight?: boolean, 120 | restrictHighlightAndSnippetArrays?: boolean, 121 | restrictSearchableAttributes?: Array, 122 | snippetEllipsisText?: string, 123 | synonyms?: boolean, 124 | tagFilters?: string, 125 | typoTolerance?: boolean, 126 | }; 127 | 128 | declare type $algoliasearch$QueryMultiParameters = Array<{| 129 | indexName: string, 130 | params: $algoliasearch$QueryParameters, 131 | |}>; 132 | 133 | declare interface $algoliasearch$Client { 134 | clearCache(): void, 135 | initIndex(s: string): $algoliasearch$Index, 136 | }; 137 | 138 | declare interface $algoliasearch$IndexLite { 139 | clearCache(): void, 140 | // Single 141 | search( 142 | s: $algoliasearch$QueryParameters, 143 | callback: Callback<$algolia$SearchIndexResponse> 144 | ): void, 145 | search( 146 | s: $algoliasearch$QueryParameters 147 | ): Promise<$algolia$SearchIndexResponse>, 148 | // Multi 149 | search( 150 | queries: Array<$algoliasearch$QueryMultiParameters>, 151 | callback: Callback<$algolia$SearchIndexMultiResponse> 152 | ): void, 153 | search( 154 | queries: Array<$algoliasearch$QueryMultiParameters> 155 | ): Promise<$algolia$SearchIndexMultiResponse>, 156 | setSettings(settings: $algoliasearch$Settings, callback: Callback): void, 157 | setSettings(settings: $algoliasearch$Settings): Promise, 158 | }; 159 | 160 | declare interface $algoliasearch$Index extends $algoliasearch$IndexLite { 161 | addObjects(o: JSONObject, callback: Callback): void, 162 | addObjects(o: JSONObject): Promise, 163 | }; 164 | 165 | declare interface $algoliasearch$ClientLite { 166 | clearCache(): void, 167 | initIndex(s: string): $algoliasearch$IndexLite, 168 | }; 169 | 170 | declare module 'algoliasearch' { 171 | declare type Client = $algoliasearch$Client; 172 | declare type ClientOptions = $algoliasearch$ClientOptions; 173 | declare type Index = $algoliasearch$Index; 174 | declare type Settings = $algoliasearch$Settings; 175 | declare module.exports: { 176 | ( 177 | applicationID: string, 178 | apiKey: string, 179 | options?: ClientOptions 180 | ): Client; 181 | } 182 | } 183 | 184 | declare module 'algoliasearch/reactnative' { 185 | declare type Client = $algoliasearch$Client; 186 | declare type ClientOptions = $algoliasearch$ClientOptions; 187 | declare type Index = $algoliasearch$Index; 188 | declare type Settings = $algoliasearch$Settings; 189 | declare module.exports: { 190 | ( 191 | applicationID: string, 192 | apiKey: string, 193 | options?: ClientOptions 194 | ): Client; 195 | } 196 | } 197 | 198 | declare module 'algoliasearch/lite' { 199 | declare type Client = $algoliasearch$ClientLite; 200 | declare type ClientOptions = $algoliasearch$ClientOptions; 201 | declare type Index = $algoliasearch$IndexLite; 202 | declare type Settings = $algoliasearch$Settings; 203 | declare module.exports: { 204 | ( 205 | applicationID: string, 206 | apiKey: string, 207 | options?: ClientOptions 208 | ): Client; 209 | } 210 | } 211 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-core_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: fc76ec014ae7eda02b1525e71831ec57 2 | // flow-typed version: <>/babel-core_v^6.26.3/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-core' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-core' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-core/lib/api/browser' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'babel-core/lib/api/node' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'babel-core/lib/helpers/get-possible-plugin-names' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'babel-core/lib/helpers/get-possible-preset-names' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'babel-core/lib/helpers/merge' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'babel-core/lib/helpers/normalize-ast' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'babel-core/lib/helpers/resolve-from-possible-names' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'babel-core/lib/helpers/resolve-plugin' { 54 | declare module.exports: any; 55 | } 56 | 57 | declare module 'babel-core/lib/helpers/resolve-preset' { 58 | declare module.exports: any; 59 | } 60 | 61 | declare module 'babel-core/lib/helpers/resolve' { 62 | declare module.exports: any; 63 | } 64 | 65 | declare module 'babel-core/lib/store' { 66 | declare module.exports: any; 67 | } 68 | 69 | declare module 'babel-core/lib/tools/build-external-helpers' { 70 | declare module.exports: any; 71 | } 72 | 73 | declare module 'babel-core/lib/transformation/file/index' { 74 | declare module.exports: any; 75 | } 76 | 77 | declare module 'babel-core/lib/transformation/file/logger' { 78 | declare module.exports: any; 79 | } 80 | 81 | declare module 'babel-core/lib/transformation/file/merge-map' { 82 | declare module.exports: any; 83 | } 84 | 85 | declare module 'babel-core/lib/transformation/file/metadata' { 86 | declare module.exports: any; 87 | } 88 | 89 | declare module 'babel-core/lib/transformation/file/options/build-config-chain' { 90 | declare module.exports: any; 91 | } 92 | 93 | declare module 'babel-core/lib/transformation/file/options/config' { 94 | declare module.exports: any; 95 | } 96 | 97 | declare module 'babel-core/lib/transformation/file/options/index' { 98 | declare module.exports: any; 99 | } 100 | 101 | declare module 'babel-core/lib/transformation/file/options/option-manager' { 102 | declare module.exports: any; 103 | } 104 | 105 | declare module 'babel-core/lib/transformation/file/options/parsers' { 106 | declare module.exports: any; 107 | } 108 | 109 | declare module 'babel-core/lib/transformation/file/options/removed' { 110 | declare module.exports: any; 111 | } 112 | 113 | declare module 'babel-core/lib/transformation/internal-plugins/block-hoist' { 114 | declare module.exports: any; 115 | } 116 | 117 | declare module 'babel-core/lib/transformation/internal-plugins/shadow-functions' { 118 | declare module.exports: any; 119 | } 120 | 121 | declare module 'babel-core/lib/transformation/pipeline' { 122 | declare module.exports: any; 123 | } 124 | 125 | declare module 'babel-core/lib/transformation/plugin-pass' { 126 | declare module.exports: any; 127 | } 128 | 129 | declare module 'babel-core/lib/transformation/plugin' { 130 | declare module.exports: any; 131 | } 132 | 133 | declare module 'babel-core/lib/util' { 134 | declare module.exports: any; 135 | } 136 | 137 | declare module 'babel-core/register' { 138 | declare module.exports: any; 139 | } 140 | 141 | // Filename aliases 142 | declare module 'babel-core/index' { 143 | declare module.exports: $Exports<'babel-core'>; 144 | } 145 | declare module 'babel-core/index.js' { 146 | declare module.exports: $Exports<'babel-core'>; 147 | } 148 | declare module 'babel-core/lib/api/browser.js' { 149 | declare module.exports: $Exports<'babel-core/lib/api/browser'>; 150 | } 151 | declare module 'babel-core/lib/api/node.js' { 152 | declare module.exports: $Exports<'babel-core/lib/api/node'>; 153 | } 154 | declare module 'babel-core/lib/helpers/get-possible-plugin-names.js' { 155 | declare module.exports: $Exports<'babel-core/lib/helpers/get-possible-plugin-names'>; 156 | } 157 | declare module 'babel-core/lib/helpers/get-possible-preset-names.js' { 158 | declare module.exports: $Exports<'babel-core/lib/helpers/get-possible-preset-names'>; 159 | } 160 | declare module 'babel-core/lib/helpers/merge.js' { 161 | declare module.exports: $Exports<'babel-core/lib/helpers/merge'>; 162 | } 163 | declare module 'babel-core/lib/helpers/normalize-ast.js' { 164 | declare module.exports: $Exports<'babel-core/lib/helpers/normalize-ast'>; 165 | } 166 | declare module 'babel-core/lib/helpers/resolve-from-possible-names.js' { 167 | declare module.exports: $Exports<'babel-core/lib/helpers/resolve-from-possible-names'>; 168 | } 169 | declare module 'babel-core/lib/helpers/resolve-plugin.js' { 170 | declare module.exports: $Exports<'babel-core/lib/helpers/resolve-plugin'>; 171 | } 172 | declare module 'babel-core/lib/helpers/resolve-preset.js' { 173 | declare module.exports: $Exports<'babel-core/lib/helpers/resolve-preset'>; 174 | } 175 | declare module 'babel-core/lib/helpers/resolve.js' { 176 | declare module.exports: $Exports<'babel-core/lib/helpers/resolve'>; 177 | } 178 | declare module 'babel-core/lib/store.js' { 179 | declare module.exports: $Exports<'babel-core/lib/store'>; 180 | } 181 | declare module 'babel-core/lib/tools/build-external-helpers.js' { 182 | declare module.exports: $Exports<'babel-core/lib/tools/build-external-helpers'>; 183 | } 184 | declare module 'babel-core/lib/transformation/file/index.js' { 185 | declare module.exports: $Exports<'babel-core/lib/transformation/file/index'>; 186 | } 187 | declare module 'babel-core/lib/transformation/file/logger.js' { 188 | declare module.exports: $Exports<'babel-core/lib/transformation/file/logger'>; 189 | } 190 | declare module 'babel-core/lib/transformation/file/merge-map.js' { 191 | declare module.exports: $Exports<'babel-core/lib/transformation/file/merge-map'>; 192 | } 193 | declare module 'babel-core/lib/transformation/file/metadata.js' { 194 | declare module.exports: $Exports<'babel-core/lib/transformation/file/metadata'>; 195 | } 196 | declare module 'babel-core/lib/transformation/file/options/build-config-chain.js' { 197 | declare module.exports: $Exports<'babel-core/lib/transformation/file/options/build-config-chain'>; 198 | } 199 | declare module 'babel-core/lib/transformation/file/options/config.js' { 200 | declare module.exports: $Exports<'babel-core/lib/transformation/file/options/config'>; 201 | } 202 | declare module 'babel-core/lib/transformation/file/options/index.js' { 203 | declare module.exports: $Exports<'babel-core/lib/transformation/file/options/index'>; 204 | } 205 | declare module 'babel-core/lib/transformation/file/options/option-manager.js' { 206 | declare module.exports: $Exports<'babel-core/lib/transformation/file/options/option-manager'>; 207 | } 208 | declare module 'babel-core/lib/transformation/file/options/parsers.js' { 209 | declare module.exports: $Exports<'babel-core/lib/transformation/file/options/parsers'>; 210 | } 211 | declare module 'babel-core/lib/transformation/file/options/removed.js' { 212 | declare module.exports: $Exports<'babel-core/lib/transformation/file/options/removed'>; 213 | } 214 | declare module 'babel-core/lib/transformation/internal-plugins/block-hoist.js' { 215 | declare module.exports: $Exports<'babel-core/lib/transformation/internal-plugins/block-hoist'>; 216 | } 217 | declare module 'babel-core/lib/transformation/internal-plugins/shadow-functions.js' { 218 | declare module.exports: $Exports<'babel-core/lib/transformation/internal-plugins/shadow-functions'>; 219 | } 220 | declare module 'babel-core/lib/transformation/pipeline.js' { 221 | declare module.exports: $Exports<'babel-core/lib/transformation/pipeline'>; 222 | } 223 | declare module 'babel-core/lib/transformation/plugin-pass.js' { 224 | declare module.exports: $Exports<'babel-core/lib/transformation/plugin-pass'>; 225 | } 226 | declare module 'babel-core/lib/transformation/plugin.js' { 227 | declare module.exports: $Exports<'babel-core/lib/transformation/plugin'>; 228 | } 229 | declare module 'babel-core/lib/util.js' { 230 | declare module.exports: $Exports<'babel-core/lib/util'>; 231 | } 232 | declare module 'babel-core/register.js' { 233 | declare module.exports: $Exports<'babel-core/register'>; 234 | } 235 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-eslint_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: d2386f3eaa26f4da69f3e7d1bf885cf6 2 | // flow-typed version: <>/babel-eslint_v^7.2.3/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-eslint' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-eslint' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-eslint/babylon-to-espree/attachComments' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'babel-eslint/babylon-to-espree/convertComments' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'babel-eslint/babylon-to-espree/convertTemplateType' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'babel-eslint/babylon-to-espree/index' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'babel-eslint/babylon-to-espree/toAST' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'babel-eslint/babylon-to-espree/toToken' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'babel-eslint/babylon-to-espree/toTokens' { 50 | declare module.exports: any; 51 | } 52 | 53 | // Filename aliases 54 | declare module 'babel-eslint/babylon-to-espree/attachComments.js' { 55 | declare module.exports: $Exports<'babel-eslint/babylon-to-espree/attachComments'>; 56 | } 57 | declare module 'babel-eslint/babylon-to-espree/convertComments.js' { 58 | declare module.exports: $Exports<'babel-eslint/babylon-to-espree/convertComments'>; 59 | } 60 | declare module 'babel-eslint/babylon-to-espree/convertTemplateType.js' { 61 | declare module.exports: $Exports<'babel-eslint/babylon-to-espree/convertTemplateType'>; 62 | } 63 | declare module 'babel-eslint/babylon-to-espree/index.js' { 64 | declare module.exports: $Exports<'babel-eslint/babylon-to-espree/index'>; 65 | } 66 | declare module 'babel-eslint/babylon-to-espree/toAST.js' { 67 | declare module.exports: $Exports<'babel-eslint/babylon-to-espree/toAST'>; 68 | } 69 | declare module 'babel-eslint/babylon-to-espree/toToken.js' { 70 | declare module.exports: $Exports<'babel-eslint/babylon-to-espree/toToken'>; 71 | } 72 | declare module 'babel-eslint/babylon-to-espree/toTokens.js' { 73 | declare module.exports: $Exports<'babel-eslint/babylon-to-espree/toTokens'>; 74 | } 75 | declare module 'babel-eslint/index' { 76 | declare module.exports: $Exports<'babel-eslint'>; 77 | } 78 | declare module 'babel-eslint/index.js' { 79 | declare module.exports: $Exports<'babel-eslint'>; 80 | } 81 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-loader_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 11490309585b1d7b7e2c8a0859b929e4 2 | // flow-typed version: <>/babel-loader_v^7.1.4/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-loader' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-loader' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-loader/lib/fs-cache' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'babel-loader/lib/index' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'babel-loader/lib/resolve-rc' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'babel-loader/lib/utils/exists' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'babel-loader/lib/utils/read' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'babel-loader/lib/utils/relative' { 46 | declare module.exports: any; 47 | } 48 | 49 | // Filename aliases 50 | declare module 'babel-loader/lib/fs-cache.js' { 51 | declare module.exports: $Exports<'babel-loader/lib/fs-cache'>; 52 | } 53 | declare module 'babel-loader/lib/index.js' { 54 | declare module.exports: $Exports<'babel-loader/lib/index'>; 55 | } 56 | declare module 'babel-loader/lib/resolve-rc.js' { 57 | declare module.exports: $Exports<'babel-loader/lib/resolve-rc'>; 58 | } 59 | declare module 'babel-loader/lib/utils/exists.js' { 60 | declare module.exports: $Exports<'babel-loader/lib/utils/exists'>; 61 | } 62 | declare module 'babel-loader/lib/utils/read.js' { 63 | declare module.exports: $Exports<'babel-loader/lib/utils/read'>; 64 | } 65 | declare module 'babel-loader/lib/utils/relative.js' { 66 | declare module.exports: $Exports<'babel-loader/lib/utils/relative'>; 67 | } 68 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-add-module-exports_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 2bd3ab66f4013a679c3228dfeaff5788 2 | // flow-typed version: <>/babel-plugin-add-module-exports_v^0.2.1/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-plugin-add-module-exports' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-plugin-add-module-exports' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-plugin-add-module-exports/changelog' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'babel-plugin-add-module-exports/lib/index' { 30 | declare module.exports: any; 31 | } 32 | 33 | // Filename aliases 34 | declare module 'babel-plugin-add-module-exports/changelog.js' { 35 | declare module.exports: $Exports<'babel-plugin-add-module-exports/changelog'>; 36 | } 37 | declare module 'babel-plugin-add-module-exports/lib/index.js' { 38 | declare module.exports: $Exports<'babel-plugin-add-module-exports/lib/index'>; 39 | } 40 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-lodash_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: a7bed7abb6b12f4e24a3481ebcbda3b8 2 | // flow-typed version: <>/babel-plugin-lodash_v^3.3.2/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-plugin-lodash' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-plugin-lodash' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-plugin-lodash/lib/config' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'babel-plugin-lodash/lib/importModule' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'babel-plugin-lodash/lib/index' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'babel-plugin-lodash/lib/Map' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'babel-plugin-lodash/lib/MapCache' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'babel-plugin-lodash/lib/mapping' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'babel-plugin-lodash/lib/ModuleCache' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'babel-plugin-lodash/lib/Package' { 54 | declare module.exports: any; 55 | } 56 | 57 | declare module 'babel-plugin-lodash/lib/Store' { 58 | declare module.exports: any; 59 | } 60 | 61 | declare module 'babel-plugin-lodash/lib/util' { 62 | declare module.exports: any; 63 | } 64 | 65 | // Filename aliases 66 | declare module 'babel-plugin-lodash/lib/config.js' { 67 | declare module.exports: $Exports<'babel-plugin-lodash/lib/config'>; 68 | } 69 | declare module 'babel-plugin-lodash/lib/importModule.js' { 70 | declare module.exports: $Exports<'babel-plugin-lodash/lib/importModule'>; 71 | } 72 | declare module 'babel-plugin-lodash/lib/index.js' { 73 | declare module.exports: $Exports<'babel-plugin-lodash/lib/index'>; 74 | } 75 | declare module 'babel-plugin-lodash/lib/Map.js' { 76 | declare module.exports: $Exports<'babel-plugin-lodash/lib/Map'>; 77 | } 78 | declare module 'babel-plugin-lodash/lib/MapCache.js' { 79 | declare module.exports: $Exports<'babel-plugin-lodash/lib/MapCache'>; 80 | } 81 | declare module 'babel-plugin-lodash/lib/mapping.js' { 82 | declare module.exports: $Exports<'babel-plugin-lodash/lib/mapping'>; 83 | } 84 | declare module 'babel-plugin-lodash/lib/ModuleCache.js' { 85 | declare module.exports: $Exports<'babel-plugin-lodash/lib/ModuleCache'>; 86 | } 87 | declare module 'babel-plugin-lodash/lib/Package.js' { 88 | declare module.exports: $Exports<'babel-plugin-lodash/lib/Package'>; 89 | } 90 | declare module 'babel-plugin-lodash/lib/Store.js' { 91 | declare module.exports: $Exports<'babel-plugin-lodash/lib/Store'>; 92 | } 93 | declare module 'babel-plugin-lodash/lib/util.js' { 94 | declare module.exports: $Exports<'babel-plugin-lodash/lib/util'>; 95 | } 96 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-transform-class-properties_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 28cd3b3180c10578bf9c6feca4711265 2 | // flow-typed version: <>/babel-plugin-transform-class-properties_v^6.24.1/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-plugin-transform-class-properties' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-plugin-transform-class-properties' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-plugin-transform-class-properties/lib/index' { 26 | declare module.exports: any; 27 | } 28 | 29 | // Filename aliases 30 | declare module 'babel-plugin-transform-class-properties/lib/index.js' { 31 | declare module.exports: $Exports<'babel-plugin-transform-class-properties/lib/index'>; 32 | } 33 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-transform-dev_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 86e66776108af83de62205d508dd057b 2 | // flow-typed version: <>/babel-plugin-transform-dev_v^2.0.1/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-plugin-transform-dev' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-plugin-transform-dev' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-plugin-transform-dev/lib/index' { 26 | declare module.exports: any; 27 | } 28 | 29 | // Filename aliases 30 | declare module 'babel-plugin-transform-dev/lib/index.js' { 31 | declare module.exports: $Exports<'babel-plugin-transform-dev/lib/index'>; 32 | } 33 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-transform-proto-to-assign_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 80d9db54ad205832f31799754475715b 2 | // flow-typed version: <>/babel-plugin-transform-proto-to-assign_v^6.26.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-plugin-transform-proto-to-assign' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-plugin-transform-proto-to-assign' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-plugin-transform-proto-to-assign/lib/index' { 26 | declare module.exports: any; 27 | } 28 | 29 | // Filename aliases 30 | declare module 'babel-plugin-transform-proto-to-assign/lib/index.js' { 31 | declare module.exports: $Exports<'babel-plugin-transform-proto-to-assign/lib/index'>; 32 | } 33 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-plugin-transform-runtime_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 1422e3978dd83edda7c1b24527fcd267 2 | // flow-typed version: <>/babel-plugin-transform-runtime_v^6.23.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-plugin-transform-runtime' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-plugin-transform-runtime' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-plugin-transform-runtime/lib/definitions' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'babel-plugin-transform-runtime/lib/index' { 30 | declare module.exports: any; 31 | } 32 | 33 | // Filename aliases 34 | declare module 'babel-plugin-transform-runtime/lib/definitions.js' { 35 | declare module.exports: $Exports<'babel-plugin-transform-runtime/lib/definitions'>; 36 | } 37 | declare module 'babel-plugin-transform-runtime/lib/index.js' { 38 | declare module.exports: $Exports<'babel-plugin-transform-runtime/lib/index'>; 39 | } 40 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-polyfill_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 2ddb1dedbd1018a817ca32a13541dd40 2 | // flow-typed version: <>/babel-polyfill_v^6.26.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-polyfill' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-polyfill' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-polyfill/browser' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'babel-polyfill/dist/polyfill' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'babel-polyfill/dist/polyfill.min' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'babel-polyfill/lib/index' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'babel-polyfill/scripts/postpublish' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'babel-polyfill/scripts/prepublish' { 46 | declare module.exports: any; 47 | } 48 | 49 | // Filename aliases 50 | declare module 'babel-polyfill/browser.js' { 51 | declare module.exports: $Exports<'babel-polyfill/browser'>; 52 | } 53 | declare module 'babel-polyfill/dist/polyfill.js' { 54 | declare module.exports: $Exports<'babel-polyfill/dist/polyfill'>; 55 | } 56 | declare module 'babel-polyfill/dist/polyfill.min.js' { 57 | declare module.exports: $Exports<'babel-polyfill/dist/polyfill.min'>; 58 | } 59 | declare module 'babel-polyfill/lib/index.js' { 60 | declare module.exports: $Exports<'babel-polyfill/lib/index'>; 61 | } 62 | declare module 'babel-polyfill/scripts/postpublish.js' { 63 | declare module.exports: $Exports<'babel-polyfill/scripts/postpublish'>; 64 | } 65 | declare module 'babel-polyfill/scripts/prepublish.js' { 66 | declare module.exports: $Exports<'babel-polyfill/scripts/prepublish'>; 67 | } 68 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-env_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: ac3f3e6ff6e3297c566909da4a4fdc77 2 | // flow-typed version: <>/babel-preset-env_v^1.6.1/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-preset-env' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-preset-env' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-preset-env/data/built-in-features' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'babel-preset-env/data/plugin-features' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'babel-preset-env/lib/default-includes' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'babel-preset-env/lib/index' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'babel-preset-env/lib/module-transformations' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'babel-preset-env/lib/normalize-options' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'babel-preset-env/lib/targets-parser' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'babel-preset-env/lib/transform-polyfill-require-plugin' { 54 | declare module.exports: any; 55 | } 56 | 57 | declare module 'babel-preset-env/lib/utils' { 58 | declare module.exports: any; 59 | } 60 | 61 | // Filename aliases 62 | declare module 'babel-preset-env/data/built-in-features.js' { 63 | declare module.exports: $Exports<'babel-preset-env/data/built-in-features'>; 64 | } 65 | declare module 'babel-preset-env/data/plugin-features.js' { 66 | declare module.exports: $Exports<'babel-preset-env/data/plugin-features'>; 67 | } 68 | declare module 'babel-preset-env/lib/default-includes.js' { 69 | declare module.exports: $Exports<'babel-preset-env/lib/default-includes'>; 70 | } 71 | declare module 'babel-preset-env/lib/index.js' { 72 | declare module.exports: $Exports<'babel-preset-env/lib/index'>; 73 | } 74 | declare module 'babel-preset-env/lib/module-transformations.js' { 75 | declare module.exports: $Exports<'babel-preset-env/lib/module-transformations'>; 76 | } 77 | declare module 'babel-preset-env/lib/normalize-options.js' { 78 | declare module.exports: $Exports<'babel-preset-env/lib/normalize-options'>; 79 | } 80 | declare module 'babel-preset-env/lib/targets-parser.js' { 81 | declare module.exports: $Exports<'babel-preset-env/lib/targets-parser'>; 82 | } 83 | declare module 'babel-preset-env/lib/transform-polyfill-require-plugin.js' { 84 | declare module.exports: $Exports<'babel-preset-env/lib/transform-polyfill-require-plugin'>; 85 | } 86 | declare module 'babel-preset-env/lib/utils.js' { 87 | declare module.exports: $Exports<'babel-preset-env/lib/utils'>; 88 | } 89 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-react_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 6e159b1fc5b3fa1346d5595c952ab4bd 2 | // flow-typed version: <>/babel-preset-react_v^6.24.1/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-preset-react' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-preset-react' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-preset-react/lib/index' { 26 | declare module.exports: any; 27 | } 28 | 29 | // Filename aliases 30 | declare module 'babel-preset-react/lib/index.js' { 31 | declare module.exports: $Exports<'babel-preset-react/lib/index'>; 32 | } 33 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-rsuite_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 45ce34e80a7c1e97fdc8935dc353f2d0 2 | // flow-typed version: <>/babel-preset-rsuite_v0.0.1/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-preset-rsuite' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-preset-rsuite' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-preset-rsuite/lib/index' { 26 | declare module.exports: any; 27 | } 28 | 29 | // Filename aliases 30 | declare module 'babel-preset-rsuite/lib/index.js' { 31 | declare module.exports: $Exports<'babel-preset-rsuite/lib/index'>; 32 | } 33 | -------------------------------------------------------------------------------- /flow-typed/npm/babel-preset-stage-1_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 46e8a9671275aff06a4802f0894c179a 2 | // flow-typed version: <>/babel-preset-stage-1_v^6.24.1/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'babel-preset-stage-1' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'babel-preset-stage-1' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'babel-preset-stage-1/lib/index' { 26 | declare module.exports: any; 27 | } 28 | 29 | // Filename aliases 30 | declare module 'babel-preset-stage-1/lib/index.js' { 31 | declare module.exports: $Exports<'babel-preset-stage-1/lib/index'>; 32 | } 33 | -------------------------------------------------------------------------------- /flow-typed/npm/brfs_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: e7f872d89e625226645101f40d157184 2 | // flow-typed version: <>/brfs_v^1.4.3/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'brfs' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'brfs' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'brfs/bin/cmd' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'brfs/example/async' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'brfs/example/main' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'brfs/test/ag' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'brfs/test/async' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'brfs/test/buffer' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'brfs/test/bundle' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'brfs/test/cmd' { 54 | declare module.exports: any; 55 | } 56 | 57 | declare module 'brfs/test/dynamic_read_concat' { 58 | declare module.exports: any; 59 | } 60 | 61 | declare module 'brfs/test/dynamic_read_no_concat' { 62 | declare module.exports: any; 63 | } 64 | 65 | declare module 'brfs/test/encoding' { 66 | declare module.exports: any; 67 | } 68 | 69 | declare module 'brfs/test/files/ag' { 70 | declare module.exports: any; 71 | } 72 | 73 | declare module 'brfs/test/files/async_encoding' { 74 | declare module.exports: any; 75 | } 76 | 77 | declare module 'brfs/test/files/async_str_encoding' { 78 | declare module.exports: any; 79 | } 80 | 81 | declare module 'brfs/test/files/async' { 82 | declare module.exports: any; 83 | } 84 | 85 | declare module 'brfs/test/files/buffer' { 86 | declare module.exports: any; 87 | } 88 | 89 | declare module 'brfs/test/files/dynamic_read_concat' { 90 | declare module.exports: any; 91 | } 92 | 93 | declare module 'brfs/test/files/dynamic_read_no_concat' { 94 | declare module.exports: any; 95 | } 96 | 97 | declare module 'brfs/test/files/encoding' { 98 | declare module.exports: any; 99 | } 100 | 101 | declare module 'brfs/test/files/hoist' { 102 | declare module.exports: any; 103 | } 104 | 105 | declare module 'brfs/test/files/inline' { 106 | declare module.exports: any; 107 | } 108 | 109 | declare module 'brfs/test/files/main' { 110 | declare module.exports: any; 111 | } 112 | 113 | declare module 'brfs/test/files/multi_var' { 114 | declare module.exports: any; 115 | } 116 | 117 | declare module 'brfs/test/files/non_fs' { 118 | declare module.exports: any; 119 | } 120 | 121 | declare module 'brfs/test/files/path_join_other_name' { 122 | declare module.exports: any; 123 | } 124 | 125 | declare module 'brfs/test/files/path_join_single_var' { 126 | declare module.exports: any; 127 | } 128 | 129 | declare module 'brfs/test/files/path_join' { 130 | declare module.exports: any; 131 | } 132 | 133 | declare module 'brfs/test/files/readdir-sync' { 134 | declare module.exports: any; 135 | } 136 | 137 | declare module 'brfs/test/files/readdir' { 138 | declare module.exports: any; 139 | } 140 | 141 | declare module 'brfs/test/files/separators' { 142 | declare module.exports: any; 143 | } 144 | 145 | declare module 'brfs/test/files/with_comments' { 146 | declare module.exports: any; 147 | } 148 | 149 | declare module 'brfs/test/hoist' { 150 | declare module.exports: any; 151 | } 152 | 153 | declare module 'brfs/test/inline' { 154 | declare module.exports: any; 155 | } 156 | 157 | declare module 'brfs/test/multi_var' { 158 | declare module.exports: any; 159 | } 160 | 161 | declare module 'brfs/test/non_fs' { 162 | declare module.exports: any; 163 | } 164 | 165 | declare module 'brfs/test/path_join_other_name' { 166 | declare module.exports: any; 167 | } 168 | 169 | declare module 'brfs/test/path_join_single_var' { 170 | declare module.exports: any; 171 | } 172 | 173 | declare module 'brfs/test/path_join' { 174 | declare module.exports: any; 175 | } 176 | 177 | declare module 'brfs/test/readdir' { 178 | declare module.exports: any; 179 | } 180 | 181 | declare module 'brfs/test/require_resolve' { 182 | declare module.exports: any; 183 | } 184 | 185 | declare module 'brfs/test/require_resolve/main' { 186 | declare module.exports: any; 187 | } 188 | 189 | declare module 'brfs/test/separators' { 190 | declare module.exports: any; 191 | } 192 | 193 | declare module 'brfs/test/tr' { 194 | declare module.exports: any; 195 | } 196 | 197 | declare module 'brfs/test/with_comments' { 198 | declare module.exports: any; 199 | } 200 | 201 | // Filename aliases 202 | declare module 'brfs/bin/cmd.js' { 203 | declare module.exports: $Exports<'brfs/bin/cmd'>; 204 | } 205 | declare module 'brfs/example/async.js' { 206 | declare module.exports: $Exports<'brfs/example/async'>; 207 | } 208 | declare module 'brfs/example/main.js' { 209 | declare module.exports: $Exports<'brfs/example/main'>; 210 | } 211 | declare module 'brfs/index' { 212 | declare module.exports: $Exports<'brfs'>; 213 | } 214 | declare module 'brfs/index.js' { 215 | declare module.exports: $Exports<'brfs'>; 216 | } 217 | declare module 'brfs/test/ag.js' { 218 | declare module.exports: $Exports<'brfs/test/ag'>; 219 | } 220 | declare module 'brfs/test/async.js' { 221 | declare module.exports: $Exports<'brfs/test/async'>; 222 | } 223 | declare module 'brfs/test/buffer.js' { 224 | declare module.exports: $Exports<'brfs/test/buffer'>; 225 | } 226 | declare module 'brfs/test/bundle.js' { 227 | declare module.exports: $Exports<'brfs/test/bundle'>; 228 | } 229 | declare module 'brfs/test/cmd.js' { 230 | declare module.exports: $Exports<'brfs/test/cmd'>; 231 | } 232 | declare module 'brfs/test/dynamic_read_concat.js' { 233 | declare module.exports: $Exports<'brfs/test/dynamic_read_concat'>; 234 | } 235 | declare module 'brfs/test/dynamic_read_no_concat.js' { 236 | declare module.exports: $Exports<'brfs/test/dynamic_read_no_concat'>; 237 | } 238 | declare module 'brfs/test/encoding.js' { 239 | declare module.exports: $Exports<'brfs/test/encoding'>; 240 | } 241 | declare module 'brfs/test/files/ag.js' { 242 | declare module.exports: $Exports<'brfs/test/files/ag'>; 243 | } 244 | declare module 'brfs/test/files/async_encoding.js' { 245 | declare module.exports: $Exports<'brfs/test/files/async_encoding'>; 246 | } 247 | declare module 'brfs/test/files/async_str_encoding.js' { 248 | declare module.exports: $Exports<'brfs/test/files/async_str_encoding'>; 249 | } 250 | declare module 'brfs/test/files/async.js' { 251 | declare module.exports: $Exports<'brfs/test/files/async'>; 252 | } 253 | declare module 'brfs/test/files/buffer.js' { 254 | declare module.exports: $Exports<'brfs/test/files/buffer'>; 255 | } 256 | declare module 'brfs/test/files/dynamic_read_concat.js' { 257 | declare module.exports: $Exports<'brfs/test/files/dynamic_read_concat'>; 258 | } 259 | declare module 'brfs/test/files/dynamic_read_no_concat.js' { 260 | declare module.exports: $Exports<'brfs/test/files/dynamic_read_no_concat'>; 261 | } 262 | declare module 'brfs/test/files/encoding.js' { 263 | declare module.exports: $Exports<'brfs/test/files/encoding'>; 264 | } 265 | declare module 'brfs/test/files/hoist.js' { 266 | declare module.exports: $Exports<'brfs/test/files/hoist'>; 267 | } 268 | declare module 'brfs/test/files/inline.js' { 269 | declare module.exports: $Exports<'brfs/test/files/inline'>; 270 | } 271 | declare module 'brfs/test/files/main.js' { 272 | declare module.exports: $Exports<'brfs/test/files/main'>; 273 | } 274 | declare module 'brfs/test/files/multi_var.js' { 275 | declare module.exports: $Exports<'brfs/test/files/multi_var'>; 276 | } 277 | declare module 'brfs/test/files/non_fs.js' { 278 | declare module.exports: $Exports<'brfs/test/files/non_fs'>; 279 | } 280 | declare module 'brfs/test/files/path_join_other_name.js' { 281 | declare module.exports: $Exports<'brfs/test/files/path_join_other_name'>; 282 | } 283 | declare module 'brfs/test/files/path_join_single_var.js' { 284 | declare module.exports: $Exports<'brfs/test/files/path_join_single_var'>; 285 | } 286 | declare module 'brfs/test/files/path_join.js' { 287 | declare module.exports: $Exports<'brfs/test/files/path_join'>; 288 | } 289 | declare module 'brfs/test/files/readdir-sync.js' { 290 | declare module.exports: $Exports<'brfs/test/files/readdir-sync'>; 291 | } 292 | declare module 'brfs/test/files/readdir.js' { 293 | declare module.exports: $Exports<'brfs/test/files/readdir'>; 294 | } 295 | declare module 'brfs/test/files/separators.js' { 296 | declare module.exports: $Exports<'brfs/test/files/separators'>; 297 | } 298 | declare module 'brfs/test/files/with_comments.js' { 299 | declare module.exports: $Exports<'brfs/test/files/with_comments'>; 300 | } 301 | declare module 'brfs/test/hoist.js' { 302 | declare module.exports: $Exports<'brfs/test/hoist'>; 303 | } 304 | declare module 'brfs/test/inline.js' { 305 | declare module.exports: $Exports<'brfs/test/inline'>; 306 | } 307 | declare module 'brfs/test/multi_var.js' { 308 | declare module.exports: $Exports<'brfs/test/multi_var'>; 309 | } 310 | declare module 'brfs/test/non_fs.js' { 311 | declare module.exports: $Exports<'brfs/test/non_fs'>; 312 | } 313 | declare module 'brfs/test/path_join_other_name.js' { 314 | declare module.exports: $Exports<'brfs/test/path_join_other_name'>; 315 | } 316 | declare module 'brfs/test/path_join_single_var.js' { 317 | declare module.exports: $Exports<'brfs/test/path_join_single_var'>; 318 | } 319 | declare module 'brfs/test/path_join.js' { 320 | declare module.exports: $Exports<'brfs/test/path_join'>; 321 | } 322 | declare module 'brfs/test/readdir.js' { 323 | declare module.exports: $Exports<'brfs/test/readdir'>; 324 | } 325 | declare module 'brfs/test/require_resolve.js' { 326 | declare module.exports: $Exports<'brfs/test/require_resolve'>; 327 | } 328 | declare module 'brfs/test/require_resolve/main.js' { 329 | declare module.exports: $Exports<'brfs/test/require_resolve/main'>; 330 | } 331 | declare module 'brfs/test/separators.js' { 332 | declare module.exports: $Exports<'brfs/test/separators'>; 333 | } 334 | declare module 'brfs/test/tr.js' { 335 | declare module.exports: $Exports<'brfs/test/tr'>; 336 | } 337 | declare module 'brfs/test/with_comments.js' { 338 | declare module.exports: $Exports<'brfs/test/with_comments'>; 339 | } 340 | -------------------------------------------------------------------------------- /flow-typed/npm/chai_v3.5.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 98fefd085adee7e50ffc1f2e8c96033f 2 | // flow-typed version: b43d75317c/chai_v3.5.x/flow_>=v0.25.0 3 | 4 | declare module "chai" { 5 | declare type ExpectChain = { 6 | and: ExpectChain, 7 | at: ExpectChain, 8 | be: ExpectChain, 9 | been: ExpectChain, 10 | have: ExpectChain, 11 | has: ExpectChain, 12 | is: ExpectChain, 13 | of: ExpectChain, 14 | same: ExpectChain, 15 | that: ExpectChain, 16 | to: ExpectChain, 17 | which: ExpectChain, 18 | with: ExpectChain, 19 | 20 | not: ExpectChain, 21 | deep: ExpectChain, 22 | any: ExpectChain, 23 | all: ExpectChain, 24 | 25 | a: ExpectChain & ((type: string) => ExpectChain), 26 | an: ExpectChain & ((type: string) => ExpectChain), 27 | 28 | include: ExpectChain & ((value: mixed) => ExpectChain), 29 | includes: ExpectChain & ((value: mixed) => ExpectChain), 30 | contain: ExpectChain & ((value: mixed) => ExpectChain), 31 | contains: ExpectChain & ((value: mixed) => ExpectChain), 32 | 33 | eql: (value: T) => ExpectChain, 34 | equal: (value: T) => ExpectChain, 35 | equals: (value: T) => ExpectChain, 36 | 37 | above: (value: T & number) => ExpectChain, 38 | greaterThan: (value: T & number) => ExpectChain, 39 | gt: (value: T & number) => ExpectChain, 40 | least: (value: T & number) => ExpectChain, 41 | below: (value: T & number) => ExpectChain, 42 | lessThan: (value: T & number) => ExpectChain, 43 | lt: (value: T & number) => ExpectChain, 44 | most: (value: T & number) => ExpectChain, 45 | within: (start: T & number, finish: T & number) => ExpectChain, 46 | 47 | instanceof: (constructor: mixed) => ExpectChain, 48 | property:

( 49 | name: string, 50 | value?: P 51 | ) => ExpectChain

& ((name: string) => ExpectChain), 52 | 53 | length: (value: number) => ExpectChain | ExpectChain, 54 | lengthOf: (value: number) => ExpectChain, 55 | 56 | match: (regex: RegExp) => ExpectChain, 57 | string: (string: string) => ExpectChain, 58 | 59 | key: (key: string) => ExpectChain, 60 | keys: ( 61 | key: string | Array, 62 | ...keys: Array 63 | ) => ExpectChain, 64 | 65 | throw: ( 66 | err?: Class | Error | RegExp | string, 67 | errMsgMatcher?: RegExp | string, 68 | msg?: string 69 | ) => ExpectChain, 70 | 71 | respondTo: (method: string) => ExpectChain, 72 | itself: ExpectChain, 73 | 74 | satisfy: (method: (value: T) => boolean) => ExpectChain, 75 | 76 | closeTo: (expected: T & number, delta: number) => ExpectChain, 77 | 78 | members: (set: mixed) => ExpectChain, 79 | oneOf: (list: Array) => ExpectChain, 80 | 81 | change: (obj: mixed, key: string) => ExpectChain, 82 | increase: (obj: mixed, key: string) => ExpectChain, 83 | decrease: (obj: mixed, key: string) => ExpectChain, 84 | 85 | // dirty-chai 86 | ok: () => ExpectChain, 87 | true: () => ExpectChain, 88 | false: () => ExpectChain, 89 | null: () => ExpectChain, 90 | undefined: () => ExpectChain, 91 | exist: () => ExpectChain, 92 | empty: () => ExpectChain, 93 | 94 | extensible: () => ExpectChain, 95 | sealed: () => ExpectChain, 96 | frozen: () => ExpectChain, 97 | 98 | // chai-immutable 99 | size: (n: number) => ExpectChain, 100 | 101 | // sinon-chai 102 | called: () => ExpectChain, 103 | callCount: (n: number) => ExpectChain, 104 | calledOnce: () => ExpectChain, 105 | calledTwice: () => ExpectChain, 106 | calledThrice: () => ExpectChain, 107 | calledBefore: (spy: mixed) => ExpectChain, 108 | calledAfter: (spy: mixed) => ExpectChain, 109 | calledWith: (...args: Array) => ExpectChain, 110 | calledWithMatch: (...args: Array) => ExpectChain, 111 | calledWithExactly: (...args: Array) => ExpectChain, 112 | 113 | // chai-as-promised 114 | eventually: ExpectChain, 115 | resolvedWith: (value: mixed) => Promise & ExpectChain, 116 | resolved: () => Promise & ExpectChain, 117 | rejectedWith: (value: mixed) => Promise & ExpectChain, 118 | rejected: () => Promise & ExpectChain, 119 | notify: (callback: () => mixed) => ExpectChain, 120 | 121 | // chai-subset 122 | containSubset: (obj: Object | Object[]) => ExpectChain, 123 | 124 | // chai-redux-mock-store 125 | dispatchedActions: ( 126 | actions: Array any)> 127 | ) => ExpectChain, 128 | dispatchedTypes: (actions: Array) => ExpectChain 129 | }; 130 | 131 | declare function expect(actual: T): ExpectChain; 132 | 133 | declare function use(plugin: (chai: Object, utils: Object) => void): void; 134 | 135 | declare class assert { 136 | static (expression: mixed, message?: string): void; 137 | static fail( 138 | actual: mixed, 139 | expected: mixed, 140 | message?: string, 141 | operator?: string 142 | ): void; 143 | 144 | static isOk(object: mixed, message?: string): void; 145 | static isNotOk(object: mixed, message?: string): void; 146 | 147 | static equal(actual: mixed, expected: mixed, message?: string): void; 148 | static notEqual(actual: mixed, expected: mixed, message?: string): void; 149 | 150 | static strictEqual(act: mixed, exp: mixed, msg?: string): void; 151 | static notStrictEqual(act: mixed, exp: mixed, msg?: string): void; 152 | 153 | static deepEqual(act: mixed, exp: mixed, msg?: string): void; 154 | static notDeepEqual(act: mixed, exp: mixed, msg?: string): void; 155 | 156 | static ok(val: mixed, msg?: string): void; 157 | static isTrue(val: mixed, msg?: string): void; 158 | static isNotTrue(val: mixed, msg?: string): void; 159 | static isFalse(val: mixed, msg?: string): void; 160 | static isNotFalse(val: mixed, msg?: string): void; 161 | 162 | static isNull(val: mixed, msg?: string): void; 163 | static isNotNull(val: mixed, msg?: string): void; 164 | 165 | static isUndefined(val: mixed, msg?: string): void; 166 | static isDefined(val: mixed, msg?: string): void; 167 | 168 | static isNaN(val: mixed, msg?: string): void; 169 | static isNotNaN(val: mixed, msg?: string): void; 170 | 171 | static isAbove(val: number, abv: number, msg?: string): void; 172 | static isBelow(val: number, blw: number, msg?: string): void; 173 | 174 | static isAtMost(val: number, atmst: number, msg?: string): void; 175 | static isAtLeast(val: number, atlst: number, msg?: string): void; 176 | 177 | static isFunction(val: mixed, msg?: string): void; 178 | static isNotFunction(val: mixed, msg?: string): void; 179 | 180 | static isObject(val: mixed, msg?: string): void; 181 | static isNotObject(val: mixed, msg?: string): void; 182 | 183 | static isArray(val: mixed, msg?: string): void; 184 | static isNotArray(val: mixed, msg?: string): void; 185 | 186 | static isString(val: mixed, msg?: string): void; 187 | static isNotString(val: mixed, msg?: string): void; 188 | 189 | static isNumber(val: mixed, msg?: string): void; 190 | static isNotNumber(val: mixed, msg?: string): void; 191 | 192 | static isBoolean(val: mixed, msg?: string): void; 193 | static isNotBoolean(val: mixed, msg?: string): void; 194 | 195 | static typeOf(val: mixed, type: string, msg?: string): void; 196 | static notTypeOf(val: mixed, type: string, msg?: string): void; 197 | 198 | static instanceOf(val: mixed, constructor: Function, msg?: string): void; 199 | static notInstanceOf(val: mixed, constructor: Function, msg?: string): void; 200 | 201 | static include(exp: string, inc: mixed, msg?: string): void; 202 | static include(exp: Array, inc: T, msg?: string): void; 203 | 204 | static notInclude(exp: string, inc: mixed, msg?: string): void; 205 | static notInclude(exp: Array, inc: T, msg?: string): void; 206 | 207 | static match(exp: mixed, re: RegExp, msg?: string): void; 208 | static notMatch(exp: mixed, re: RegExp, msg?: string): void; 209 | 210 | static property(obj: Object, prop: string, msg?: string): void; 211 | static notProperty(obj: Object, prop: string, msg?: string): void; 212 | static deepProperty(obj: Object, prop: string, msg?: string): void; 213 | static notDeepProperty(obj: Object, prop: string, msg?: string): void; 214 | 215 | static propertyVal( 216 | obj: Object, 217 | prop: string, 218 | val: mixed, 219 | msg?: string 220 | ): void; 221 | static propertyNotVal( 222 | obj: Object, 223 | prop: string, 224 | val: mixed, 225 | msg?: string 226 | ): void; 227 | 228 | static deepPropertyVal( 229 | obj: Object, 230 | prop: string, 231 | val: mixed, 232 | msg?: string 233 | ): void; 234 | static deepPropertyNotVal( 235 | obj: Object, 236 | prop: string, 237 | val: mixed, 238 | msg?: string 239 | ): void; 240 | 241 | static lengthOf(exp: mixed, len: number, msg?: string): void; 242 | 243 | static throws( 244 | func: () => any, 245 | err?: Class | Error | RegExp | string, 246 | errorMsgMatcher?: string | RegExp, 247 | msg?: string 248 | ): void; 249 | static doesNotThrow( 250 | func: () => any, 251 | err?: Class | Error | RegExp | string, 252 | errorMsgMatcher?: string | RegExp, 253 | msg?: string 254 | ): void; 255 | } 256 | 257 | declare var config: { 258 | includeStack: boolean, 259 | showDiff: boolean, 260 | truncateThreshold: number 261 | }; 262 | } 263 | -------------------------------------------------------------------------------- /flow-typed/npm/chartist_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 53d5bccabfb23f9a0e693009929cf2db 2 | // flow-typed version: <>/chartist_v^0.11.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'chartist' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'chartist' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'chartist/dist/chartist' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'chartist/dist/chartist.min' { 30 | declare module.exports: any; 31 | } 32 | 33 | // Filename aliases 34 | declare module 'chartist/dist/chartist.js' { 35 | declare module.exports: $Exports<'chartist/dist/chartist'>; 36 | } 37 | declare module 'chartist/dist/chartist.min.js' { 38 | declare module.exports: $Exports<'chartist/dist/chartist.min'>; 39 | } 40 | -------------------------------------------------------------------------------- /flow-typed/npm/child-process-promise_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: fa4c216bac13f43c883622eb1f972783 2 | // flow-typed version: <>/child-process-promise_v^2.0.2/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'child-process-promise' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'child-process-promise' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'child-process-promise/lib-es5/ChildProcessError' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'child-process-promise/lib-es5/ChildProcessPromise' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'child-process-promise/lib-es5/index' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'child-process-promise/lib/ChildProcessError' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'child-process-promise/lib/ChildProcessPromise' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'child-process-promise/lib/index' { 46 | declare module.exports: any; 47 | } 48 | 49 | // Filename aliases 50 | declare module 'child-process-promise/index' { 51 | declare module.exports: $Exports<'child-process-promise'>; 52 | } 53 | declare module 'child-process-promise/index.js' { 54 | declare module.exports: $Exports<'child-process-promise'>; 55 | } 56 | declare module 'child-process-promise/lib-es5/ChildProcessError.js' { 57 | declare module.exports: $Exports<'child-process-promise/lib-es5/ChildProcessError'>; 58 | } 59 | declare module 'child-process-promise/lib-es5/ChildProcessPromise.js' { 60 | declare module.exports: $Exports<'child-process-promise/lib-es5/ChildProcessPromise'>; 61 | } 62 | declare module 'child-process-promise/lib-es5/index.js' { 63 | declare module.exports: $Exports<'child-process-promise/lib-es5/index'>; 64 | } 65 | declare module 'child-process-promise/lib/ChildProcessError.js' { 66 | declare module.exports: $Exports<'child-process-promise/lib/ChildProcessError'>; 67 | } 68 | declare module 'child-process-promise/lib/ChildProcessPromise.js' { 69 | declare module.exports: $Exports<'child-process-promise/lib/ChildProcessPromise'>; 70 | } 71 | declare module 'child-process-promise/lib/index.js' { 72 | declare module.exports: $Exports<'child-process-promise/lib/index'>; 73 | } 74 | -------------------------------------------------------------------------------- /flow-typed/npm/classnames_v2.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: cf86673cc32d185bdab1d2ea90578d37 2 | // flow-typed version: 614bf49aa8/classnames_v2.x.x/flow_>=v0.25.x 3 | 4 | type $npm$classnames$Classes = 5 | | string 6 | | { [className: string]: * } 7 | | false 8 | | void 9 | | null; 10 | 11 | declare module "classnames" { 12 | declare module.exports: ( 13 | ...classes: Array<$npm$classnames$Classes | $npm$classnames$Classes[]> 14 | ) => string; 15 | } 16 | 17 | declare module "classnames/bind" { 18 | declare module.exports: $Exports<"classnames">; 19 | } 20 | 21 | declare module "classnames/dedupe" { 22 | declare module.exports: $Exports<"classnames">; 23 | } 24 | -------------------------------------------------------------------------------- /flow-typed/npm/compression-webpack-plugin_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: db26559668ae3c3463c5f48ce550a0bd 2 | // flow-typed version: <>/compression-webpack-plugin_v^1.0.1/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'compression-webpack-plugin' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'compression-webpack-plugin' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'compression-webpack-plugin/dist/cjs' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'compression-webpack-plugin/dist/index' { 30 | declare module.exports: any; 31 | } 32 | 33 | // Filename aliases 34 | declare module 'compression-webpack-plugin/dist/cjs.js' { 35 | declare module.exports: $Exports<'compression-webpack-plugin/dist/cjs'>; 36 | } 37 | declare module 'compression-webpack-plugin/dist/index.js' { 38 | declare module.exports: $Exports<'compression-webpack-plugin/dist/index'>; 39 | } 40 | -------------------------------------------------------------------------------- /flow-typed/npm/css-loader_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: b530668714937b65c4df12a16ac2322e 2 | // flow-typed version: <>/css-loader_v^0.28.11/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'css-loader' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'css-loader' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'css-loader/lib/compile-exports' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'css-loader/lib/createResolver' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'css-loader/lib/css-base' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'css-loader/lib/getImportPrefix' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'css-loader/lib/getLocalIdent' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'css-loader/lib/loader' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'css-loader/lib/localsLoader' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'css-loader/lib/processCss' { 54 | declare module.exports: any; 55 | } 56 | 57 | declare module 'css-loader/lib/url/escape' { 58 | declare module.exports: any; 59 | } 60 | 61 | declare module 'css-loader/locals' { 62 | declare module.exports: any; 63 | } 64 | 65 | // Filename aliases 66 | declare module 'css-loader/index' { 67 | declare module.exports: $Exports<'css-loader'>; 68 | } 69 | declare module 'css-loader/index.js' { 70 | declare module.exports: $Exports<'css-loader'>; 71 | } 72 | declare module 'css-loader/lib/compile-exports.js' { 73 | declare module.exports: $Exports<'css-loader/lib/compile-exports'>; 74 | } 75 | declare module 'css-loader/lib/createResolver.js' { 76 | declare module.exports: $Exports<'css-loader/lib/createResolver'>; 77 | } 78 | declare module 'css-loader/lib/css-base.js' { 79 | declare module.exports: $Exports<'css-loader/lib/css-base'>; 80 | } 81 | declare module 'css-loader/lib/getImportPrefix.js' { 82 | declare module.exports: $Exports<'css-loader/lib/getImportPrefix'>; 83 | } 84 | declare module 'css-loader/lib/getLocalIdent.js' { 85 | declare module.exports: $Exports<'css-loader/lib/getLocalIdent'>; 86 | } 87 | declare module 'css-loader/lib/loader.js' { 88 | declare module.exports: $Exports<'css-loader/lib/loader'>; 89 | } 90 | declare module 'css-loader/lib/localsLoader.js' { 91 | declare module.exports: $Exports<'css-loader/lib/localsLoader'>; 92 | } 93 | declare module 'css-loader/lib/processCss.js' { 94 | declare module.exports: $Exports<'css-loader/lib/processCss'>; 95 | } 96 | declare module 'css-loader/lib/url/escape.js' { 97 | declare module.exports: $Exports<'css-loader/lib/url/escape'>; 98 | } 99 | declare module 'css-loader/locals.js' { 100 | declare module.exports: $Exports<'css-loader/locals'>; 101 | } 102 | -------------------------------------------------------------------------------- /flow-typed/npm/cssnano_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: c3c2e2a959cfaca13aff97970b9cfa07 2 | // flow-typed version: <>/cssnano_v^3.10.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'cssnano' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'cssnano' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'cssnano/dist/index' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'cssnano/dist/lib/core' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'cssnano/dist/lib/evenValues' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'cssnano/dist/lib/filterOptimiser' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'cssnano/dist/lib/functionOptimiser' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'cssnano/dist/lib/getArguments' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'cssnano/dist/lib/getMatch' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'cssnano/dist/lib/normalizeString' { 54 | declare module.exports: any; 55 | } 56 | 57 | declare module 'cssnano/dist/lib/normalizeUnicode' { 58 | declare module.exports: any; 59 | } 60 | 61 | declare module 'cssnano/dist/lib/reduceBackgroundRepeat' { 62 | declare module.exports: any; 63 | } 64 | 65 | declare module 'cssnano/dist/lib/reduceDisplayValues' { 66 | declare module.exports: any; 67 | } 68 | 69 | declare module 'cssnano/dist/lib/reducePositions' { 70 | declare module.exports: any; 71 | } 72 | 73 | declare module 'cssnano/dist/lib/reduceTimingFunctions' { 74 | declare module.exports: any; 75 | } 76 | 77 | declare module 'cssnano/dist/lib/styleCache' { 78 | declare module.exports: any; 79 | } 80 | 81 | declare module 'cssnano/quickstart' { 82 | declare module.exports: any; 83 | } 84 | 85 | // Filename aliases 86 | declare module 'cssnano/dist/index.js' { 87 | declare module.exports: $Exports<'cssnano/dist/index'>; 88 | } 89 | declare module 'cssnano/dist/lib/core.js' { 90 | declare module.exports: $Exports<'cssnano/dist/lib/core'>; 91 | } 92 | declare module 'cssnano/dist/lib/evenValues.js' { 93 | declare module.exports: $Exports<'cssnano/dist/lib/evenValues'>; 94 | } 95 | declare module 'cssnano/dist/lib/filterOptimiser.js' { 96 | declare module.exports: $Exports<'cssnano/dist/lib/filterOptimiser'>; 97 | } 98 | declare module 'cssnano/dist/lib/functionOptimiser.js' { 99 | declare module.exports: $Exports<'cssnano/dist/lib/functionOptimiser'>; 100 | } 101 | declare module 'cssnano/dist/lib/getArguments.js' { 102 | declare module.exports: $Exports<'cssnano/dist/lib/getArguments'>; 103 | } 104 | declare module 'cssnano/dist/lib/getMatch.js' { 105 | declare module.exports: $Exports<'cssnano/dist/lib/getMatch'>; 106 | } 107 | declare module 'cssnano/dist/lib/normalizeString.js' { 108 | declare module.exports: $Exports<'cssnano/dist/lib/normalizeString'>; 109 | } 110 | declare module 'cssnano/dist/lib/normalizeUnicode.js' { 111 | declare module.exports: $Exports<'cssnano/dist/lib/normalizeUnicode'>; 112 | } 113 | declare module 'cssnano/dist/lib/reduceBackgroundRepeat.js' { 114 | declare module.exports: $Exports<'cssnano/dist/lib/reduceBackgroundRepeat'>; 115 | } 116 | declare module 'cssnano/dist/lib/reduceDisplayValues.js' { 117 | declare module.exports: $Exports<'cssnano/dist/lib/reduceDisplayValues'>; 118 | } 119 | declare module 'cssnano/dist/lib/reducePositions.js' { 120 | declare module.exports: $Exports<'cssnano/dist/lib/reducePositions'>; 121 | } 122 | declare module 'cssnano/dist/lib/reduceTimingFunctions.js' { 123 | declare module.exports: $Exports<'cssnano/dist/lib/reduceTimingFunctions'>; 124 | } 125 | declare module 'cssnano/dist/lib/styleCache.js' { 126 | declare module.exports: $Exports<'cssnano/dist/lib/styleCache'>; 127 | } 128 | declare module 'cssnano/quickstart.js' { 129 | declare module.exports: $Exports<'cssnano/quickstart'>; 130 | } 131 | -------------------------------------------------------------------------------- /flow-typed/npm/eslint-plugin-babel_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: b328bc9a8d187c890c8d14c5ff67f180 2 | // flow-typed version: <>/eslint-plugin-babel_v^3.2.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'eslint-plugin-babel' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'eslint-plugin-babel' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'eslint-plugin-babel/rules/array-bracket-spacing' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'eslint-plugin-babel/rules/arrow-parens' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'eslint-plugin-babel/rules/flow-object-type' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'eslint-plugin-babel/rules/func-params-comma-dangle' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'eslint-plugin-babel/rules/generator-star-spacing' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'eslint-plugin-babel/rules/new-cap' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'eslint-plugin-babel/rules/no-await-in-loop' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'eslint-plugin-babel/rules/object-curly-spacing' { 54 | declare module.exports: any; 55 | } 56 | 57 | declare module 'eslint-plugin-babel/rules/object-shorthand' { 58 | declare module.exports: any; 59 | } 60 | 61 | declare module 'eslint-plugin-babel/tests/array-bracket-spacing' { 62 | declare module.exports: any; 63 | } 64 | 65 | declare module 'eslint-plugin-babel/tests/arrow-parens' { 66 | declare module.exports: any; 67 | } 68 | 69 | declare module 'eslint-plugin-babel/tests/flow-object-type' { 70 | declare module.exports: any; 71 | } 72 | 73 | declare module 'eslint-plugin-babel/tests/func-params-comma-dangle' { 74 | declare module.exports: any; 75 | } 76 | 77 | declare module 'eslint-plugin-babel/tests/generator-star-spacing' { 78 | declare module.exports: any; 79 | } 80 | 81 | declare module 'eslint-plugin-babel/tests/new-cap' { 82 | declare module.exports: any; 83 | } 84 | 85 | declare module 'eslint-plugin-babel/tests/no-await-in-loop' { 86 | declare module.exports: any; 87 | } 88 | 89 | declare module 'eslint-plugin-babel/tests/object-curly-spacing' { 90 | declare module.exports: any; 91 | } 92 | 93 | declare module 'eslint-plugin-babel/tests/object-shorthand' { 94 | declare module.exports: any; 95 | } 96 | 97 | // Filename aliases 98 | declare module 'eslint-plugin-babel/index' { 99 | declare module.exports: $Exports<'eslint-plugin-babel'>; 100 | } 101 | declare module 'eslint-plugin-babel/index.js' { 102 | declare module.exports: $Exports<'eslint-plugin-babel'>; 103 | } 104 | declare module 'eslint-plugin-babel/rules/array-bracket-spacing.js' { 105 | declare module.exports: $Exports<'eslint-plugin-babel/rules/array-bracket-spacing'>; 106 | } 107 | declare module 'eslint-plugin-babel/rules/arrow-parens.js' { 108 | declare module.exports: $Exports<'eslint-plugin-babel/rules/arrow-parens'>; 109 | } 110 | declare module 'eslint-plugin-babel/rules/flow-object-type.js' { 111 | declare module.exports: $Exports<'eslint-plugin-babel/rules/flow-object-type'>; 112 | } 113 | declare module 'eslint-plugin-babel/rules/func-params-comma-dangle.js' { 114 | declare module.exports: $Exports<'eslint-plugin-babel/rules/func-params-comma-dangle'>; 115 | } 116 | declare module 'eslint-plugin-babel/rules/generator-star-spacing.js' { 117 | declare module.exports: $Exports<'eslint-plugin-babel/rules/generator-star-spacing'>; 118 | } 119 | declare module 'eslint-plugin-babel/rules/new-cap.js' { 120 | declare module.exports: $Exports<'eslint-plugin-babel/rules/new-cap'>; 121 | } 122 | declare module 'eslint-plugin-babel/rules/no-await-in-loop.js' { 123 | declare module.exports: $Exports<'eslint-plugin-babel/rules/no-await-in-loop'>; 124 | } 125 | declare module 'eslint-plugin-babel/rules/object-curly-spacing.js' { 126 | declare module.exports: $Exports<'eslint-plugin-babel/rules/object-curly-spacing'>; 127 | } 128 | declare module 'eslint-plugin-babel/rules/object-shorthand.js' { 129 | declare module.exports: $Exports<'eslint-plugin-babel/rules/object-shorthand'>; 130 | } 131 | declare module 'eslint-plugin-babel/tests/array-bracket-spacing.js' { 132 | declare module.exports: $Exports<'eslint-plugin-babel/tests/array-bracket-spacing'>; 133 | } 134 | declare module 'eslint-plugin-babel/tests/arrow-parens.js' { 135 | declare module.exports: $Exports<'eslint-plugin-babel/tests/arrow-parens'>; 136 | } 137 | declare module 'eslint-plugin-babel/tests/flow-object-type.js' { 138 | declare module.exports: $Exports<'eslint-plugin-babel/tests/flow-object-type'>; 139 | } 140 | declare module 'eslint-plugin-babel/tests/func-params-comma-dangle.js' { 141 | declare module.exports: $Exports<'eslint-plugin-babel/tests/func-params-comma-dangle'>; 142 | } 143 | declare module 'eslint-plugin-babel/tests/generator-star-spacing.js' { 144 | declare module.exports: $Exports<'eslint-plugin-babel/tests/generator-star-spacing'>; 145 | } 146 | declare module 'eslint-plugin-babel/tests/new-cap.js' { 147 | declare module.exports: $Exports<'eslint-plugin-babel/tests/new-cap'>; 148 | } 149 | declare module 'eslint-plugin-babel/tests/no-await-in-loop.js' { 150 | declare module.exports: $Exports<'eslint-plugin-babel/tests/no-await-in-loop'>; 151 | } 152 | declare module 'eslint-plugin-babel/tests/object-curly-spacing.js' { 153 | declare module.exports: $Exports<'eslint-plugin-babel/tests/object-curly-spacing'>; 154 | } 155 | declare module 'eslint-plugin-babel/tests/object-shorthand.js' { 156 | declare module.exports: $Exports<'eslint-plugin-babel/tests/object-shorthand'>; 157 | } 158 | -------------------------------------------------------------------------------- /flow-typed/npm/extract-text-webpack-plugin_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 05ef09dfc9e5088cc56bdadeb38a8670 2 | // flow-typed version: <>/extract-text-webpack-plugin_v^4.0.0-beta.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'extract-text-webpack-plugin' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'extract-text-webpack-plugin' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'extract-text-webpack-plugin/dist/cjs' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'extract-text-webpack-plugin/dist/index' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'extract-text-webpack-plugin/dist/lib/ExtractedModule' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'extract-text-webpack-plugin/dist/lib/ExtractTextPluginCompilation' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'extract-text-webpack-plugin/dist/lib/helpers' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'extract-text-webpack-plugin/dist/lib/OrderUndefinedError' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'extract-text-webpack-plugin/dist/loader' { 50 | declare module.exports: any; 51 | } 52 | 53 | // Filename aliases 54 | declare module 'extract-text-webpack-plugin/dist/cjs.js' { 55 | declare module.exports: $Exports<'extract-text-webpack-plugin/dist/cjs'>; 56 | } 57 | declare module 'extract-text-webpack-plugin/dist/index.js' { 58 | declare module.exports: $Exports<'extract-text-webpack-plugin/dist/index'>; 59 | } 60 | declare module 'extract-text-webpack-plugin/dist/lib/ExtractedModule.js' { 61 | declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/ExtractedModule'>; 62 | } 63 | declare module 'extract-text-webpack-plugin/dist/lib/ExtractTextPluginCompilation.js' { 64 | declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/ExtractTextPluginCompilation'>; 65 | } 66 | declare module 'extract-text-webpack-plugin/dist/lib/helpers.js' { 67 | declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/helpers'>; 68 | } 69 | declare module 'extract-text-webpack-plugin/dist/lib/OrderUndefinedError.js' { 70 | declare module.exports: $Exports<'extract-text-webpack-plugin/dist/lib/OrderUndefinedError'>; 71 | } 72 | declare module 'extract-text-webpack-plugin/dist/loader.js' { 73 | declare module.exports: $Exports<'extract-text-webpack-plugin/dist/loader'>; 74 | } 75 | -------------------------------------------------------------------------------- /flow-typed/npm/file-loader_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: edf751676c381a3bc79a2577ca0915c9 2 | // flow-typed version: <>/file-loader_v^1.1.11/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'file-loader' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'file-loader' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'file-loader/dist/cjs' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'file-loader/dist/index' { 30 | declare module.exports: any; 31 | } 32 | 33 | // Filename aliases 34 | declare module 'file-loader/dist/cjs.js' { 35 | declare module.exports: $Exports<'file-loader/dist/cjs'>; 36 | } 37 | declare module 'file-loader/dist/index.js' { 38 | declare module.exports: $Exports<'file-loader/dist/index'>; 39 | } 40 | -------------------------------------------------------------------------------- /flow-typed/npm/flow-bin_v0.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 6a5610678d4b01e13bbfbbc62bdaf583 2 | // flow-typed version: 3817bc6980/flow-bin_v0.x.x/flow_>=v0.25.x 3 | 4 | declare module "flow-bin" { 5 | declare module.exports: string; 6 | } 7 | -------------------------------------------------------------------------------- /flow-typed/npm/fs-promise_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 529c5d74afd6bd233ccb0889c206dbf9 2 | // flow-typed version: <>/fs-promise_v^0.5.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'fs-promise' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'fs-promise' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'fs-promise/test/basic' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'fs-promise/test/mz' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'fs-promise/test/register' { 34 | declare module.exports: any; 35 | } 36 | 37 | // Filename aliases 38 | declare module 'fs-promise/index' { 39 | declare module.exports: $Exports<'fs-promise'>; 40 | } 41 | declare module 'fs-promise/index.js' { 42 | declare module.exports: $Exports<'fs-promise'>; 43 | } 44 | declare module 'fs-promise/test/basic.js' { 45 | declare module.exports: $Exports<'fs-promise/test/basic'>; 46 | } 47 | declare module 'fs-promise/test/mz.js' { 48 | declare module.exports: $Exports<'fs-promise/test/mz'>; 49 | } 50 | declare module 'fs-promise/test/register.js' { 51 | declare module.exports: $Exports<'fs-promise/test/register'>; 52 | } 53 | -------------------------------------------------------------------------------- /flow-typed/npm/gh-pages_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 7c33428e6b152bea40ae754e356fb2c0 2 | // flow-typed version: <>/gh-pages_v^1.2.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'gh-pages' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'gh-pages' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'gh-pages/bin/gh-pages-clean' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'gh-pages/bin/gh-pages' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'gh-pages/lib/git' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'gh-pages/lib/index' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'gh-pages/lib/util' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'gh-pages/plugin' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'gh-pages/test/bin/gh-pages.spec' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'gh-pages/test/helper' { 54 | declare module.exports: any; 55 | } 56 | 57 | declare module 'gh-pages/test/integration/basic.spec' { 58 | declare module.exports: any; 59 | } 60 | 61 | declare module 'gh-pages/test/integration/dest.spec' { 62 | declare module.exports: any; 63 | } 64 | 65 | declare module 'gh-pages/test/integration/fixtures/include/expected/good' { 66 | declare module.exports: any; 67 | } 68 | 69 | declare module 'gh-pages/test/integration/fixtures/include/local/good' { 70 | declare module.exports: any; 71 | } 72 | 73 | declare module 'gh-pages/test/integration/include.spec' { 74 | declare module.exports: any; 75 | } 76 | 77 | declare module 'gh-pages/test/lib/util.spec' { 78 | declare module.exports: any; 79 | } 80 | 81 | // Filename aliases 82 | declare module 'gh-pages/bin/gh-pages-clean.js' { 83 | declare module.exports: $Exports<'gh-pages/bin/gh-pages-clean'>; 84 | } 85 | declare module 'gh-pages/bin/gh-pages.js' { 86 | declare module.exports: $Exports<'gh-pages/bin/gh-pages'>; 87 | } 88 | declare module 'gh-pages/lib/git.js' { 89 | declare module.exports: $Exports<'gh-pages/lib/git'>; 90 | } 91 | declare module 'gh-pages/lib/index.js' { 92 | declare module.exports: $Exports<'gh-pages/lib/index'>; 93 | } 94 | declare module 'gh-pages/lib/util.js' { 95 | declare module.exports: $Exports<'gh-pages/lib/util'>; 96 | } 97 | declare module 'gh-pages/plugin.js' { 98 | declare module.exports: $Exports<'gh-pages/plugin'>; 99 | } 100 | declare module 'gh-pages/test/bin/gh-pages.spec.js' { 101 | declare module.exports: $Exports<'gh-pages/test/bin/gh-pages.spec'>; 102 | } 103 | declare module 'gh-pages/test/helper.js' { 104 | declare module.exports: $Exports<'gh-pages/test/helper'>; 105 | } 106 | declare module 'gh-pages/test/integration/basic.spec.js' { 107 | declare module.exports: $Exports<'gh-pages/test/integration/basic.spec'>; 108 | } 109 | declare module 'gh-pages/test/integration/dest.spec.js' { 110 | declare module.exports: $Exports<'gh-pages/test/integration/dest.spec'>; 111 | } 112 | declare module 'gh-pages/test/integration/fixtures/include/expected/good.js' { 113 | declare module.exports: $Exports<'gh-pages/test/integration/fixtures/include/expected/good'>; 114 | } 115 | declare module 'gh-pages/test/integration/fixtures/include/local/good.js' { 116 | declare module.exports: $Exports<'gh-pages/test/integration/fixtures/include/local/good'>; 117 | } 118 | declare module 'gh-pages/test/integration/include.spec.js' { 119 | declare module.exports: $Exports<'gh-pages/test/integration/include.spec'>; 120 | } 121 | declare module 'gh-pages/test/lib/util.spec.js' { 122 | declare module.exports: $Exports<'gh-pages/test/lib/util.spec'>; 123 | } 124 | -------------------------------------------------------------------------------- /flow-typed/npm/glob_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 9bb25204b0d7b909c3421b4f03b2cc2b 2 | // flow-typed version: <>/glob_v^7.0.3/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'glob' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'glob' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'glob/common' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'glob/glob' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'glob/sync' { 34 | declare module.exports: any; 35 | } 36 | 37 | // Filename aliases 38 | declare module 'glob/common.js' { 39 | declare module.exports: $Exports<'glob/common'>; 40 | } 41 | declare module 'glob/glob.js' { 42 | declare module.exports: $Exports<'glob/glob'>; 43 | } 44 | declare module 'glob/sync.js' { 45 | declare module.exports: $Exports<'glob/sync'>; 46 | } 47 | -------------------------------------------------------------------------------- /flow-typed/npm/html-loader_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: cd1a4bf39b99f96cfe1eb99bbd20b85f 2 | // flow-typed version: <>/html-loader_v^0.4.3/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'html-loader' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'html-loader' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'html-loader/lib/attributesParser' { 26 | declare module.exports: any; 27 | } 28 | 29 | // Filename aliases 30 | declare module 'html-loader/index' { 31 | declare module.exports: $Exports<'html-loader'>; 32 | } 33 | declare module 'html-loader/index.js' { 34 | declare module.exports: $Exports<'html-loader'>; 35 | } 36 | declare module 'html-loader/lib/attributesParser.js' { 37 | declare module.exports: $Exports<'html-loader/lib/attributesParser'>; 38 | } 39 | -------------------------------------------------------------------------------- /flow-typed/npm/html-webpack-plugin_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 7b11ba98e80ce036f370918f0accae7e 2 | // flow-typed version: <>/html-webpack-plugin_v^3.0.6/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'html-webpack-plugin' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'html-webpack-plugin' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'html-webpack-plugin/lib/chunksorter' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'html-webpack-plugin/lib/compiler' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'html-webpack-plugin/lib/errors' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'html-webpack-plugin/lib/loader' { 38 | declare module.exports: any; 39 | } 40 | 41 | // Filename aliases 42 | declare module 'html-webpack-plugin/index' { 43 | declare module.exports: $Exports<'html-webpack-plugin'>; 44 | } 45 | declare module 'html-webpack-plugin/index.js' { 46 | declare module.exports: $Exports<'html-webpack-plugin'>; 47 | } 48 | declare module 'html-webpack-plugin/lib/chunksorter.js' { 49 | declare module.exports: $Exports<'html-webpack-plugin/lib/chunksorter'>; 50 | } 51 | declare module 'html-webpack-plugin/lib/compiler.js' { 52 | declare module.exports: $Exports<'html-webpack-plugin/lib/compiler'>; 53 | } 54 | declare module 'html-webpack-plugin/lib/errors.js' { 55 | declare module.exports: $Exports<'html-webpack-plugin/lib/errors'>; 56 | } 57 | declare module 'html-webpack-plugin/lib/loader.js' { 58 | declare module.exports: $Exports<'html-webpack-plugin/lib/loader'>; 59 | } 60 | -------------------------------------------------------------------------------- /flow-typed/npm/less-loader_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: a50aaa835cd3ad35a5d7946eed99f362 2 | // flow-typed version: <>/less-loader_v^4.1.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'less-loader' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'less-loader' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'less-loader/dist/cjs' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'less-loader/dist/createWebpackLessPlugin' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'less-loader/dist/formatLessError' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'less-loader/dist/getOptions' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'less-loader/dist/index' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'less-loader/dist/processResult' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'less-loader/dist/removeSourceMappingUrl' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'less-loader/dist/stringifyLoader' { 54 | declare module.exports: any; 55 | } 56 | 57 | // Filename aliases 58 | declare module 'less-loader/dist/cjs.js' { 59 | declare module.exports: $Exports<'less-loader/dist/cjs'>; 60 | } 61 | declare module 'less-loader/dist/createWebpackLessPlugin.js' { 62 | declare module.exports: $Exports<'less-loader/dist/createWebpackLessPlugin'>; 63 | } 64 | declare module 'less-loader/dist/formatLessError.js' { 65 | declare module.exports: $Exports<'less-loader/dist/formatLessError'>; 66 | } 67 | declare module 'less-loader/dist/getOptions.js' { 68 | declare module.exports: $Exports<'less-loader/dist/getOptions'>; 69 | } 70 | declare module 'less-loader/dist/index.js' { 71 | declare module.exports: $Exports<'less-loader/dist/index'>; 72 | } 73 | declare module 'less-loader/dist/processResult.js' { 74 | declare module.exports: $Exports<'less-loader/dist/processResult'>; 75 | } 76 | declare module 'less-loader/dist/removeSourceMappingUrl.js' { 77 | declare module.exports: $Exports<'less-loader/dist/removeSourceMappingUrl'>; 78 | } 79 | declare module 'less-loader/dist/stringifyLoader.js' { 80 | declare module.exports: $Exports<'less-loader/dist/stringifyLoader'>; 81 | } 82 | -------------------------------------------------------------------------------- /flow-typed/npm/lodash-webpack-plugin_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 19f56f4efe89f0eb10025a846874e21e 2 | // flow-typed version: <>/lodash-webpack-plugin_v^0.11.5/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'lodash-webpack-plugin' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'lodash-webpack-plugin' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'lodash-webpack-plugin/lib/index' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'lodash-webpack-plugin/lib/listing' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'lodash-webpack-plugin/lib/mapping' { 34 | declare module.exports: any; 35 | } 36 | 37 | // Filename aliases 38 | declare module 'lodash-webpack-plugin/lib/index.js' { 39 | declare module.exports: $Exports<'lodash-webpack-plugin/lib/index'>; 40 | } 41 | declare module 'lodash-webpack-plugin/lib/listing.js' { 42 | declare module.exports: $Exports<'lodash-webpack-plugin/lib/listing'>; 43 | } 44 | declare module 'lodash-webpack-plugin/lib/mapping.js' { 45 | declare module.exports: $Exports<'lodash-webpack-plugin/lib/mapping'>; 46 | } 47 | -------------------------------------------------------------------------------- /flow-typed/npm/mocha_v2.4.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: ee3fbf2649f3a8e2106603751f8fe5ea 2 | // flow-typed version: da30fe6876/mocha_v2.4.x/flow_>=v0.25.x 3 | 4 | type TestFunction = (done: () => void) => void | Promise; 5 | 6 | declare var describe: { 7 | (name: string, spec: () => void): void, 8 | only(description: string, spec: () => void): void, 9 | skip(description: string, spec: () => void): void, 10 | timeout(ms: number): void 11 | }; 12 | 13 | declare var context: typeof describe; 14 | 15 | declare var it: { 16 | (name: string, spec?: TestFunction): void, 17 | only(description: string, spec: TestFunction): void, 18 | skip(description: string, spec: TestFunction): void, 19 | timeout(ms: number): void 20 | }; 21 | 22 | declare function before(method: TestFunction): void; 23 | declare function beforeEach(method: TestFunction): void; 24 | declare function after(method: TestFunction): void; 25 | declare function afterEach(method: TestFunction): void; 26 | -------------------------------------------------------------------------------- /flow-typed/npm/output-file-sync_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: aa8f86399abd0bea6f9113c5babf823c 2 | // flow-typed version: <>/output-file-sync_v^1.1.1/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'output-file-sync' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'output-file-sync' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | 26 | 27 | // Filename aliases 28 | declare module 'output-file-sync/index' { 29 | declare module.exports: $Exports<'output-file-sync'>; 30 | } 31 | declare module 'output-file-sync/index.js' { 32 | declare module.exports: $Exports<'output-file-sync'>; 33 | } 34 | -------------------------------------------------------------------------------- /flow-typed/npm/postcss-loader_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 72b54ec97de7ca18c258489c02fd7c41 2 | // flow-typed version: <>/postcss-loader_v^2.0.9/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'postcss-loader' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'postcss-loader' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'postcss-loader/lib/Error' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'postcss-loader/lib/index' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'postcss-loader/lib/options' { 34 | declare module.exports: any; 35 | } 36 | 37 | // Filename aliases 38 | declare module 'postcss-loader/lib/Error.js' { 39 | declare module.exports: $Exports<'postcss-loader/lib/Error'>; 40 | } 41 | declare module 'postcss-loader/lib/index.js' { 42 | declare module.exports: $Exports<'postcss-loader/lib/index'>; 43 | } 44 | declare module 'postcss-loader/lib/options.js' { 45 | declare module.exports: $Exports<'postcss-loader/lib/options'>; 46 | } 47 | -------------------------------------------------------------------------------- /flow-typed/npm/prop-types_v15.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: d9a983bb1ac458a256c31c139047bdbb 2 | // flow-typed version: 927687984d/prop-types_v15.x.x/flow_>=v0.41.x 3 | 4 | type $npm$propTypes$ReactPropsCheckType = ( 5 | props: any, 6 | propName: string, 7 | componentName: string, 8 | href?: string) => ?Error; 9 | 10 | declare module 'prop-types' { 11 | declare var array: React$PropType$Primitive>; 12 | declare var bool: React$PropType$Primitive; 13 | declare var func: React$PropType$Primitive; 14 | declare var number: React$PropType$Primitive; 15 | declare var object: React$PropType$Primitive; 16 | declare var string: React$PropType$Primitive; 17 | declare var symbol: React$PropType$Primitive; 18 | declare var any: React$PropType$Primitive; 19 | declare var arrayOf: React$PropType$ArrayOf; 20 | declare var element: React$PropType$Primitive; /* TODO */ 21 | declare var instanceOf: React$PropType$InstanceOf; 22 | declare var node: React$PropType$Primitive; /* TODO */ 23 | declare var objectOf: React$PropType$ObjectOf; 24 | declare var oneOf: React$PropType$OneOf; 25 | declare var oneOfType: React$PropType$OneOfType; 26 | declare var shape: React$PropType$Shape; 27 | 28 | declare function checkPropTypes( 29 | propTypes: $Subtype<{[_: $Keys]: $npm$propTypes$ReactPropsCheckType}>, 30 | values: V, 31 | location: string, 32 | componentName: string, 33 | getStack: ?(() => ?string) 34 | ) : void; 35 | } 36 | -------------------------------------------------------------------------------- /flow-typed/npm/react-chartist_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 9e14fdfa3f3cb28fffed927aeffbaee8 2 | // flow-typed version: <>/react-chartist_v^0.13.1/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'react-chartist' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'react-chartist' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'react-chartist/dist/index' { 26 | declare module.exports: any; 27 | } 28 | 29 | // Filename aliases 30 | declare module 'react-chartist/dist/index.js' { 31 | declare module.exports: $Exports<'react-chartist/dist/index'>; 32 | } 33 | declare module 'react-chartist/index' { 34 | declare module.exports: $Exports<'react-chartist'>; 35 | } 36 | declare module 'react-chartist/index.js' { 37 | declare module.exports: $Exports<'react-chartist'>; 38 | } 39 | -------------------------------------------------------------------------------- /flow-typed/npm/react-hot-loader_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 9ea3f1d6722a35de1b3240d2988ffd68 2 | // flow-typed version: <>/react-hot-loader_v^4.0.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'react-hot-loader' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'react-hot-loader' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'react-hot-loader/babel' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'react-hot-loader/dist/babel.development' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'react-hot-loader/dist/babel.production.min' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'react-hot-loader/dist/react-hot-loader.development' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'react-hot-loader/dist/react-hot-loader.production.min' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'react-hot-loader/patch' { 46 | declare module.exports: any; 47 | } 48 | 49 | // Filename aliases 50 | declare module 'react-hot-loader/babel.js' { 51 | declare module.exports: $Exports<'react-hot-loader/babel'>; 52 | } 53 | declare module 'react-hot-loader/dist/babel.development.js' { 54 | declare module.exports: $Exports<'react-hot-loader/dist/babel.development'>; 55 | } 56 | declare module 'react-hot-loader/dist/babel.production.min.js' { 57 | declare module.exports: $Exports<'react-hot-loader/dist/babel.production.min'>; 58 | } 59 | declare module 'react-hot-loader/dist/react-hot-loader.development.js' { 60 | declare module.exports: $Exports<'react-hot-loader/dist/react-hot-loader.development'>; 61 | } 62 | declare module 'react-hot-loader/dist/react-hot-loader.production.min.js' { 63 | declare module.exports: $Exports<'react-hot-loader/dist/react-hot-loader.production.min'>; 64 | } 65 | declare module 'react-hot-loader/index' { 66 | declare module.exports: $Exports<'react-hot-loader'>; 67 | } 68 | declare module 'react-hot-loader/index.js' { 69 | declare module.exports: $Exports<'react-hot-loader'>; 70 | } 71 | declare module 'react-hot-loader/patch.js' { 72 | declare module.exports: $Exports<'react-hot-loader/patch'>; 73 | } 74 | -------------------------------------------------------------------------------- /flow-typed/npm/react-intl_v2.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 64c4a99e632b3fb8d0a4fb57ab6d9ebb 2 | // flow-typed version: e9421afdb2/react-intl_v2.x.x/flow_>=v0.63.x 3 | 4 | /** 5 | * Original implementation of this file by @marudor at https://github.com/marudor/flowInterfaces 6 | * Copied here based on intention to merge with flow-typed expressed here: 7 | * https://github.com/marudor/flowInterfaces/issues/6 8 | */ 9 | // Mostly from https://github.com/yahoo/react-intl/wiki/API#react-intl-api 10 | declare module "react-intl" { 11 | import type { Element, ChildrenArray } from "react"; 12 | 13 | declare type $npm$ReactIntl$LocaleData = { 14 | locale: string, 15 | [key: string]: any 16 | }; 17 | 18 | declare type $npm$ReactIntl$MessageDescriptor = { 19 | id: string, 20 | description?: string, 21 | defaultMessage?: string 22 | }; 23 | 24 | declare type $npm$ReactIntl$IntlConfig = { 25 | locale: string, 26 | formats: Object, 27 | messages: { [id: string]: string }, 28 | 29 | defaultLocale?: string, 30 | defaultFormats?: Object 31 | }; 32 | 33 | declare type $npm$ReactIntl$IntlProviderConfig = { 34 | locale?: string, 35 | formats?: Object, 36 | messages?: { [id: string]: string }, 37 | 38 | defaultLocale?: string, 39 | defaultFormats?: Object 40 | }; 41 | 42 | declare type $npm$ReactIntl$IntlFormat = { 43 | formatDate: (value: any, options?: Object) => string, 44 | formatTime: (value: any, options?: Object) => string, 45 | formatRelative: (value: any, options?: Object) => string, 46 | formatNumber: (value: any, options?: Object) => string, 47 | formatPlural: (value: any, options?: Object) => string, 48 | formatMessage: ( 49 | messageDescriptor: $npm$ReactIntl$MessageDescriptor, 50 | values?: Object 51 | ) => string, 52 | formatHTMLMessage: ( 53 | messageDescriptor: $npm$ReactIntl$MessageDescriptor, 54 | values?: Object 55 | ) => string 56 | }; 57 | 58 | declare type $npm$ReactIntl$IntlShape = $npm$ReactIntl$IntlConfig & 59 | $npm$ReactIntl$IntlFormat & { now: () => number }; 60 | 61 | declare type $npm$ReactIntl$DateTimeFormatOptions = { 62 | localeMatcher?: "best fit" | "lookup", 63 | formatMatcher?: "basic" | "best fit", 64 | 65 | timeZone?: string, 66 | hour12?: boolean, 67 | 68 | weekday?: "narrow" | "short" | "long", 69 | era?: "narrow" | "short" | "long", 70 | year?: "numeric" | "2-digit", 71 | month?: "numeric" | "2-digit" | "narrow" | "short" | "long", 72 | day?: "numeric" | "2-digit", 73 | hour?: "numeric" | "2-digit", 74 | minute?: "numeric" | "2-digit", 75 | second?: "numeric" | "2-digit", 76 | timeZoneName?: "short" | "long" 77 | }; 78 | 79 | declare type $npm$ReactIntl$RelativeFormatOptions = { 80 | style?: "best fit" | "numeric", 81 | units?: "second" | "minute" | "hour" | "day" | "month" | "year" 82 | }; 83 | 84 | declare type $npm$ReactIntl$NumberFormatOptions = { 85 | localeMatcher?: "best fit" | "lookup", 86 | 87 | style?: "decimal" | "currency" | "percent", 88 | 89 | currency?: string, 90 | currencyDisplay?: "symbol" | "code" | "name", 91 | 92 | useGrouping?: boolean, 93 | 94 | minimumIntegerDigits?: number, 95 | minimumFractionDigits?: number, 96 | maximumFractionDigits?: number, 97 | minimumSignificantDigits?: number, 98 | maximumSignificantDigits?: number 99 | }; 100 | 101 | declare type $npm$ReactIntl$PluralFormatOptions = { 102 | style?: "cardinal" | "ordinal" 103 | }; 104 | 105 | declare type $npm$ReactIntl$PluralCategoryString = 106 | | "zero" 107 | | "one" 108 | | "two" 109 | | "few" 110 | | "many" 111 | | "other"; 112 | 113 | declare type $npm$ReactIntl$DateParseable = number | string | Date; 114 | // PropType checker 115 | declare function intlShape( 116 | props: Object, 117 | propName: string, 118 | componentName: string 119 | ): void; 120 | declare function addLocaleData( 121 | data: $npm$ReactIntl$LocaleData | Array<$npm$ReactIntl$LocaleData> 122 | ): void; 123 | declare function defineMessages< 124 | T: { [key: string]: $npm$ReactIntl$MessageDescriptor } 125 | >( 126 | messageDescriptors: T 127 | ): T; 128 | 129 | declare type InjectIntlProvidedProps = { 130 | intl: $npm$ReactIntl$IntlShape 131 | } 132 | 133 | declare type InjectIntlVoidProps = { 134 | intl: $npm$ReactIntl$IntlShape | void 135 | } 136 | 137 | declare type ComponentWithDefaultProps = 138 | | React$ComponentType 139 | | React$StatelessFunctionalComponent 140 | | ChildrenArray>; 141 | 142 | declare type InjectIntlOptions = { 143 | intlPropName?: string, 144 | withRef?: boolean 145 | } 146 | 147 | declare class IntlInjectedComponent extends React$Component { 148 | static WrappedComponent: Class>, 149 | static defaultProps: TDefaultProps, 150 | props: TOwnProps 151 | } 152 | 153 | declare type IntlInjectedComponentClass = Class< 154 | IntlInjectedComponent 155 | >; 156 | 157 | declare function injectIntl>( 158 | WrappedComponent: Component, 159 | options?: InjectIntlOptions, 160 | ): React$ComponentType< 161 | $Diff, InjectIntlVoidProps> 162 | >; 163 | 164 | declare function formatMessage( 165 | messageDescriptor: $npm$ReactIntl$MessageDescriptor, 166 | values?: Object 167 | ): string; 168 | declare function formatHTMLMessage( 169 | messageDescriptor: $npm$ReactIntl$MessageDescriptor, 170 | values?: Object 171 | ): string; 172 | declare function formatDate( 173 | value: any, 174 | options?: $npm$ReactIntl$DateTimeFormatOptions & { format: string } 175 | ): string; 176 | declare function formatTime( 177 | value: any, 178 | options?: $npm$ReactIntl$DateTimeFormatOptions & { format: string } 179 | ): string; 180 | declare function formatRelative( 181 | value: any, 182 | options?: $npm$ReactIntl$RelativeFormatOptions & { 183 | format: string, 184 | now: any 185 | } 186 | ): string; 187 | declare function formatNumber( 188 | value: any, 189 | options?: $npm$ReactIntl$NumberFormatOptions & { format: string } 190 | ): string; 191 | declare function formatPlural( 192 | value: any, 193 | options?: $npm$ReactIntl$PluralFormatOptions 194 | ): $npm$ReactIntl$PluralCategoryString; 195 | 196 | declare class FormattedMessage extends React$Component< 197 | $npm$ReactIntl$MessageDescriptor & { 198 | values?: Object, 199 | tagName?: string, 200 | children?: (...formattedMessage: Array) => React$Node 201 | } 202 | > {} 203 | declare class FormattedHTMLMessage extends React$Component< 204 | $npm$ReactIntl$DateTimeFormatOptions & { 205 | values?: Object, 206 | tagName?: string, 207 | children?: (...formattedMessage: Array) => React$Node 208 | } 209 | > {} 210 | declare class FormattedDate extends React$Component< 211 | $npm$ReactIntl$DateTimeFormatOptions & { 212 | value: $npm$ReactIntl$DateParseable, 213 | format?: string, 214 | children?: (formattedDate: string) => React$Node 215 | } 216 | > {} 217 | declare class FormattedTime extends React$Component< 218 | $npm$ReactIntl$DateTimeFormatOptions & { 219 | value: $npm$ReactIntl$DateParseable, 220 | format?: string, 221 | children?: (formattedDate: string) => React$Node 222 | } 223 | > {} 224 | declare class FormattedRelative extends React$Component< 225 | $npm$ReactIntl$RelativeFormatOptions & { 226 | value: $npm$ReactIntl$DateParseable, 227 | format?: string, 228 | updateInterval?: number, 229 | initialNow?: $npm$ReactIntl$DateParseable, 230 | children?: (formattedDate: string) => React$Node 231 | } 232 | > {} 233 | declare class FormattedNumber extends React$Component< 234 | $npm$ReactIntl$NumberFormatOptions & { 235 | value: number | string, 236 | format?: string, 237 | children?: (formattedNumber: string) => React$Node 238 | } 239 | > {} 240 | declare class FormattedPlural extends React$Component< 241 | $npm$ReactIntl$PluralFormatOptions & { 242 | value: number | string, 243 | other: React$Node, 244 | zero?: React$Node, 245 | one?: React$Node, 246 | two?: React$Node, 247 | few?: React$Node, 248 | many?: React$Node, 249 | children?: (formattedPlural: React$Node) => React$Node 250 | } 251 | > {} 252 | declare class IntlProvider extends React$Component< 253 | $npm$ReactIntl$IntlProviderConfig & { 254 | children?: React$Node, 255 | initialNow?: $npm$ReactIntl$DateParseable 256 | } 257 | > {} 258 | declare type IntlShape = $npm$ReactIntl$IntlShape; 259 | declare type MessageDescriptor = $npm$ReactIntl$MessageDescriptor; 260 | } 261 | -------------------------------------------------------------------------------- /flow-typed/npm/rimraf_v2.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 1dff23447d5e18f5ac2b05aaec7cfb74 2 | // flow-typed version: a453e98ea2/rimraf_v2.x.x/flow_>=v0.25.0 3 | 4 | declare module 'rimraf' { 5 | declare type Options = { 6 | maxBusyTries?: number, 7 | emfileWait?: number, 8 | glob?: boolean, 9 | disableGlob?: boolean 10 | }; 11 | 12 | declare type Callback = (err: ?Error, path: ?string) => void; 13 | 14 | declare module.exports: { 15 | (f: string, opts?: Options | Callback, callback?: Callback): void; 16 | sync(path: string, opts?: Options): void; 17 | }; 18 | } 19 | -------------------------------------------------------------------------------- /flow-typed/npm/sinon-chai_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 4fde9998f49db8c468aafd26cc3e4caf 2 | // flow-typed version: <>/sinon-chai_v^2.8.0/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'sinon-chai' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'sinon-chai' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'sinon-chai/lib/sinon-chai' { 26 | declare module.exports: any; 27 | } 28 | 29 | // Filename aliases 30 | declare module 'sinon-chai/lib/sinon-chai.js' { 31 | declare module.exports: $Exports<'sinon-chai/lib/sinon-chai'>; 32 | } 33 | -------------------------------------------------------------------------------- /flow-typed/npm/sinon_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 0cca479653b1df99ce46e08225caad1c 2 | // flow-typed version: <>/sinon_v^1.17.4/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'sinon' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'sinon' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'sinon/lib/sinon' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'sinon/lib/sinon/assert' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'sinon/lib/sinon/behavior' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'sinon/lib/sinon/call' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'sinon/lib/sinon/collection' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'sinon/lib/sinon/extend' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'sinon/lib/sinon/format' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'sinon/lib/sinon/log_error' { 54 | declare module.exports: any; 55 | } 56 | 57 | declare module 'sinon/lib/sinon/match' { 58 | declare module.exports: any; 59 | } 60 | 61 | declare module 'sinon/lib/sinon/mock' { 62 | declare module.exports: any; 63 | } 64 | 65 | declare module 'sinon/lib/sinon/sandbox' { 66 | declare module.exports: any; 67 | } 68 | 69 | declare module 'sinon/lib/sinon/spy' { 70 | declare module.exports: any; 71 | } 72 | 73 | declare module 'sinon/lib/sinon/stub' { 74 | declare module.exports: any; 75 | } 76 | 77 | declare module 'sinon/lib/sinon/test_case' { 78 | declare module.exports: any; 79 | } 80 | 81 | declare module 'sinon/lib/sinon/test' { 82 | declare module.exports: any; 83 | } 84 | 85 | declare module 'sinon/lib/sinon/times_in_words' { 86 | declare module.exports: any; 87 | } 88 | 89 | declare module 'sinon/lib/sinon/typeOf' { 90 | declare module.exports: any; 91 | } 92 | 93 | declare module 'sinon/lib/sinon/util/core' { 94 | declare module.exports: any; 95 | } 96 | 97 | declare module 'sinon/lib/sinon/util/event' { 98 | declare module.exports: any; 99 | } 100 | 101 | declare module 'sinon/lib/sinon/util/fake_server_with_clock' { 102 | declare module.exports: any; 103 | } 104 | 105 | declare module 'sinon/lib/sinon/util/fake_server' { 106 | declare module.exports: any; 107 | } 108 | 109 | declare module 'sinon/lib/sinon/util/fake_timers' { 110 | declare module.exports: any; 111 | } 112 | 113 | declare module 'sinon/lib/sinon/util/fake_xdomain_request' { 114 | declare module.exports: any; 115 | } 116 | 117 | declare module 'sinon/lib/sinon/util/fake_xml_http_request' { 118 | declare module.exports: any; 119 | } 120 | 121 | declare module 'sinon/lib/sinon/util/timers_ie' { 122 | declare module.exports: any; 123 | } 124 | 125 | declare module 'sinon/lib/sinon/util/xdr_ie' { 126 | declare module.exports: any; 127 | } 128 | 129 | declare module 'sinon/lib/sinon/util/xhr_ie' { 130 | declare module.exports: any; 131 | } 132 | 133 | declare module 'sinon/lib/sinon/walk' { 134 | declare module.exports: any; 135 | } 136 | 137 | declare module 'sinon/pkg/sinon-1.17.7' { 138 | declare module.exports: any; 139 | } 140 | 141 | declare module 'sinon/pkg/sinon-ie-1.17.7' { 142 | declare module.exports: any; 143 | } 144 | 145 | declare module 'sinon/pkg/sinon-ie' { 146 | declare module.exports: any; 147 | } 148 | 149 | declare module 'sinon/pkg/sinon-server-1.17.7' { 150 | declare module.exports: any; 151 | } 152 | 153 | declare module 'sinon/pkg/sinon-server' { 154 | declare module.exports: any; 155 | } 156 | 157 | declare module 'sinon/pkg/sinon' { 158 | declare module.exports: any; 159 | } 160 | 161 | // Filename aliases 162 | declare module 'sinon/lib/sinon.js' { 163 | declare module.exports: $Exports<'sinon/lib/sinon'>; 164 | } 165 | declare module 'sinon/lib/sinon/assert.js' { 166 | declare module.exports: $Exports<'sinon/lib/sinon/assert'>; 167 | } 168 | declare module 'sinon/lib/sinon/behavior.js' { 169 | declare module.exports: $Exports<'sinon/lib/sinon/behavior'>; 170 | } 171 | declare module 'sinon/lib/sinon/call.js' { 172 | declare module.exports: $Exports<'sinon/lib/sinon/call'>; 173 | } 174 | declare module 'sinon/lib/sinon/collection.js' { 175 | declare module.exports: $Exports<'sinon/lib/sinon/collection'>; 176 | } 177 | declare module 'sinon/lib/sinon/extend.js' { 178 | declare module.exports: $Exports<'sinon/lib/sinon/extend'>; 179 | } 180 | declare module 'sinon/lib/sinon/format.js' { 181 | declare module.exports: $Exports<'sinon/lib/sinon/format'>; 182 | } 183 | declare module 'sinon/lib/sinon/log_error.js' { 184 | declare module.exports: $Exports<'sinon/lib/sinon/log_error'>; 185 | } 186 | declare module 'sinon/lib/sinon/match.js' { 187 | declare module.exports: $Exports<'sinon/lib/sinon/match'>; 188 | } 189 | declare module 'sinon/lib/sinon/mock.js' { 190 | declare module.exports: $Exports<'sinon/lib/sinon/mock'>; 191 | } 192 | declare module 'sinon/lib/sinon/sandbox.js' { 193 | declare module.exports: $Exports<'sinon/lib/sinon/sandbox'>; 194 | } 195 | declare module 'sinon/lib/sinon/spy.js' { 196 | declare module.exports: $Exports<'sinon/lib/sinon/spy'>; 197 | } 198 | declare module 'sinon/lib/sinon/stub.js' { 199 | declare module.exports: $Exports<'sinon/lib/sinon/stub'>; 200 | } 201 | declare module 'sinon/lib/sinon/test_case.js' { 202 | declare module.exports: $Exports<'sinon/lib/sinon/test_case'>; 203 | } 204 | declare module 'sinon/lib/sinon/test.js' { 205 | declare module.exports: $Exports<'sinon/lib/sinon/test'>; 206 | } 207 | declare module 'sinon/lib/sinon/times_in_words.js' { 208 | declare module.exports: $Exports<'sinon/lib/sinon/times_in_words'>; 209 | } 210 | declare module 'sinon/lib/sinon/typeOf.js' { 211 | declare module.exports: $Exports<'sinon/lib/sinon/typeOf'>; 212 | } 213 | declare module 'sinon/lib/sinon/util/core.js' { 214 | declare module.exports: $Exports<'sinon/lib/sinon/util/core'>; 215 | } 216 | declare module 'sinon/lib/sinon/util/event.js' { 217 | declare module.exports: $Exports<'sinon/lib/sinon/util/event'>; 218 | } 219 | declare module 'sinon/lib/sinon/util/fake_server_with_clock.js' { 220 | declare module.exports: $Exports<'sinon/lib/sinon/util/fake_server_with_clock'>; 221 | } 222 | declare module 'sinon/lib/sinon/util/fake_server.js' { 223 | declare module.exports: $Exports<'sinon/lib/sinon/util/fake_server'>; 224 | } 225 | declare module 'sinon/lib/sinon/util/fake_timers.js' { 226 | declare module.exports: $Exports<'sinon/lib/sinon/util/fake_timers'>; 227 | } 228 | declare module 'sinon/lib/sinon/util/fake_xdomain_request.js' { 229 | declare module.exports: $Exports<'sinon/lib/sinon/util/fake_xdomain_request'>; 230 | } 231 | declare module 'sinon/lib/sinon/util/fake_xml_http_request.js' { 232 | declare module.exports: $Exports<'sinon/lib/sinon/util/fake_xml_http_request'>; 233 | } 234 | declare module 'sinon/lib/sinon/util/timers_ie.js' { 235 | declare module.exports: $Exports<'sinon/lib/sinon/util/timers_ie'>; 236 | } 237 | declare module 'sinon/lib/sinon/util/xdr_ie.js' { 238 | declare module.exports: $Exports<'sinon/lib/sinon/util/xdr_ie'>; 239 | } 240 | declare module 'sinon/lib/sinon/util/xhr_ie.js' { 241 | declare module.exports: $Exports<'sinon/lib/sinon/util/xhr_ie'>; 242 | } 243 | declare module 'sinon/lib/sinon/walk.js' { 244 | declare module.exports: $Exports<'sinon/lib/sinon/walk'>; 245 | } 246 | declare module 'sinon/pkg/sinon-1.17.7.js' { 247 | declare module.exports: $Exports<'sinon/pkg/sinon-1.17.7'>; 248 | } 249 | declare module 'sinon/pkg/sinon-ie-1.17.7.js' { 250 | declare module.exports: $Exports<'sinon/pkg/sinon-ie-1.17.7'>; 251 | } 252 | declare module 'sinon/pkg/sinon-ie.js' { 253 | declare module.exports: $Exports<'sinon/pkg/sinon-ie'>; 254 | } 255 | declare module 'sinon/pkg/sinon-server-1.17.7.js' { 256 | declare module.exports: $Exports<'sinon/pkg/sinon-server-1.17.7'>; 257 | } 258 | declare module 'sinon/pkg/sinon-server.js' { 259 | declare module.exports: $Exports<'sinon/pkg/sinon-server'>; 260 | } 261 | declare module 'sinon/pkg/sinon.js' { 262 | declare module.exports: $Exports<'sinon/pkg/sinon'>; 263 | } 264 | -------------------------------------------------------------------------------- /flow-typed/npm/style-loader_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: ee69013f738683186d82f5016f9c7eea 2 | // flow-typed version: <>/style-loader_v^0.20.3/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'style-loader' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'style-loader' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'style-loader/lib/addStyles' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'style-loader/lib/addStyleUrl' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'style-loader/lib/urls' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'style-loader/url' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'style-loader/useable' { 42 | declare module.exports: any; 43 | } 44 | 45 | // Filename aliases 46 | declare module 'style-loader/index' { 47 | declare module.exports: $Exports<'style-loader'>; 48 | } 49 | declare module 'style-loader/index.js' { 50 | declare module.exports: $Exports<'style-loader'>; 51 | } 52 | declare module 'style-loader/lib/addStyles.js' { 53 | declare module.exports: $Exports<'style-loader/lib/addStyles'>; 54 | } 55 | declare module 'style-loader/lib/addStyleUrl.js' { 56 | declare module.exports: $Exports<'style-loader/lib/addStyleUrl'>; 57 | } 58 | declare module 'style-loader/lib/urls.js' { 59 | declare module.exports: $Exports<'style-loader/lib/urls'>; 60 | } 61 | declare module 'style-loader/url.js' { 62 | declare module.exports: $Exports<'style-loader/url'>; 63 | } 64 | declare module 'style-loader/useable.js' { 65 | declare module.exports: $Exports<'style-loader/useable'>; 66 | } 67 | -------------------------------------------------------------------------------- /flow-typed/npm/transform-loader_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: c518c9a261240c84d3af73d647e2bb5b 2 | // flow-typed version: <>/transform-loader_v^0.2.3/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'transform-loader' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'transform-loader' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'transform-loader/cacheable' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'transform-loader/test/test' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'transform-loader/test/webpack.config' { 34 | declare module.exports: any; 35 | } 36 | 37 | // Filename aliases 38 | declare module 'transform-loader/cacheable.js' { 39 | declare module.exports: $Exports<'transform-loader/cacheable'>; 40 | } 41 | declare module 'transform-loader/index' { 42 | declare module.exports: $Exports<'transform-loader'>; 43 | } 44 | declare module 'transform-loader/index.js' { 45 | declare module.exports: $Exports<'transform-loader'>; 46 | } 47 | declare module 'transform-loader/test/test.js' { 48 | declare module.exports: $Exports<'transform-loader/test/test'>; 49 | } 50 | declare module 'transform-loader/test/webpack.config.js' { 51 | declare module.exports: $Exports<'transform-loader/test/webpack.config'>; 52 | } 53 | -------------------------------------------------------------------------------- /flow-typed/npm/url-loader_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 150d4bf959f5bb0916bfc28693560121 2 | // flow-typed version: <>/url-loader_v^0.5.7/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'url-loader' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'url-loader' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | 26 | 27 | // Filename aliases 28 | declare module 'url-loader/index' { 29 | declare module.exports: $Exports<'url-loader'>; 30 | } 31 | declare module 'url-loader/index.js' { 32 | declare module.exports: $Exports<'url-loader'>; 33 | } 34 | -------------------------------------------------------------------------------- /flow-typed/npm/webpack-bundle-analyzer_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: b120f422c3128fc289ba32d20ed7040b 2 | // flow-typed version: <>/webpack-bundle-analyzer_v^2.11.1/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'webpack-bundle-analyzer' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'webpack-bundle-analyzer' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'webpack-bundle-analyzer/lib/analyzer' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'webpack-bundle-analyzer/lib/bin/analyzer' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'webpack-bundle-analyzer/lib/BundleAnalyzerPlugin' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'webpack-bundle-analyzer/lib/index' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'webpack-bundle-analyzer/lib/Logger' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'webpack-bundle-analyzer/lib/parseUtils' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'webpack-bundle-analyzer/lib/tree/BaseFolder' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'webpack-bundle-analyzer/lib/tree/ConcatenatedModule' { 54 | declare module.exports: any; 55 | } 56 | 57 | declare module 'webpack-bundle-analyzer/lib/tree/ContentFolder' { 58 | declare module.exports: any; 59 | } 60 | 61 | declare module 'webpack-bundle-analyzer/lib/tree/ContentModule' { 62 | declare module.exports: any; 63 | } 64 | 65 | declare module 'webpack-bundle-analyzer/lib/tree/Folder' { 66 | declare module.exports: any; 67 | } 68 | 69 | declare module 'webpack-bundle-analyzer/lib/tree/Module' { 70 | declare module.exports: any; 71 | } 72 | 73 | declare module 'webpack-bundle-analyzer/lib/tree/Node' { 74 | declare module.exports: any; 75 | } 76 | 77 | declare module 'webpack-bundle-analyzer/lib/tree/utils' { 78 | declare module.exports: any; 79 | } 80 | 81 | declare module 'webpack-bundle-analyzer/lib/utils' { 82 | declare module.exports: any; 83 | } 84 | 85 | declare module 'webpack-bundle-analyzer/lib/viewer' { 86 | declare module.exports: any; 87 | } 88 | 89 | declare module 'webpack-bundle-analyzer/public/viewer' { 90 | declare module.exports: any; 91 | } 92 | 93 | declare module 'webpack-bundle-analyzer/src/analyzer' { 94 | declare module.exports: any; 95 | } 96 | 97 | declare module 'webpack-bundle-analyzer/src/bin/analyzer' { 98 | declare module.exports: any; 99 | } 100 | 101 | declare module 'webpack-bundle-analyzer/src/BundleAnalyzerPlugin' { 102 | declare module.exports: any; 103 | } 104 | 105 | declare module 'webpack-bundle-analyzer/src/index' { 106 | declare module.exports: any; 107 | } 108 | 109 | declare module 'webpack-bundle-analyzer/src/Logger' { 110 | declare module.exports: any; 111 | } 112 | 113 | declare module 'webpack-bundle-analyzer/src/parseUtils' { 114 | declare module.exports: any; 115 | } 116 | 117 | declare module 'webpack-bundle-analyzer/src/tree/BaseFolder' { 118 | declare module.exports: any; 119 | } 120 | 121 | declare module 'webpack-bundle-analyzer/src/tree/ConcatenatedModule' { 122 | declare module.exports: any; 123 | } 124 | 125 | declare module 'webpack-bundle-analyzer/src/tree/ContentFolder' { 126 | declare module.exports: any; 127 | } 128 | 129 | declare module 'webpack-bundle-analyzer/src/tree/ContentModule' { 130 | declare module.exports: any; 131 | } 132 | 133 | declare module 'webpack-bundle-analyzer/src/tree/Folder' { 134 | declare module.exports: any; 135 | } 136 | 137 | declare module 'webpack-bundle-analyzer/src/tree/Module' { 138 | declare module.exports: any; 139 | } 140 | 141 | declare module 'webpack-bundle-analyzer/src/tree/Node' { 142 | declare module.exports: any; 143 | } 144 | 145 | declare module 'webpack-bundle-analyzer/src/tree/utils' { 146 | declare module.exports: any; 147 | } 148 | 149 | declare module 'webpack-bundle-analyzer/src/utils' { 150 | declare module.exports: any; 151 | } 152 | 153 | declare module 'webpack-bundle-analyzer/src/viewer' { 154 | declare module.exports: any; 155 | } 156 | 157 | // Filename aliases 158 | declare module 'webpack-bundle-analyzer/lib/analyzer.js' { 159 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/analyzer'>; 160 | } 161 | declare module 'webpack-bundle-analyzer/lib/bin/analyzer.js' { 162 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/bin/analyzer'>; 163 | } 164 | declare module 'webpack-bundle-analyzer/lib/BundleAnalyzerPlugin.js' { 165 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/BundleAnalyzerPlugin'>; 166 | } 167 | declare module 'webpack-bundle-analyzer/lib/index.js' { 168 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/index'>; 169 | } 170 | declare module 'webpack-bundle-analyzer/lib/Logger.js' { 171 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/Logger'>; 172 | } 173 | declare module 'webpack-bundle-analyzer/lib/parseUtils.js' { 174 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/parseUtils'>; 175 | } 176 | declare module 'webpack-bundle-analyzer/lib/tree/BaseFolder.js' { 177 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/BaseFolder'>; 178 | } 179 | declare module 'webpack-bundle-analyzer/lib/tree/ConcatenatedModule.js' { 180 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/ConcatenatedModule'>; 181 | } 182 | declare module 'webpack-bundle-analyzer/lib/tree/ContentFolder.js' { 183 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/ContentFolder'>; 184 | } 185 | declare module 'webpack-bundle-analyzer/lib/tree/ContentModule.js' { 186 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/ContentModule'>; 187 | } 188 | declare module 'webpack-bundle-analyzer/lib/tree/Folder.js' { 189 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/Folder'>; 190 | } 191 | declare module 'webpack-bundle-analyzer/lib/tree/Module.js' { 192 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/Module'>; 193 | } 194 | declare module 'webpack-bundle-analyzer/lib/tree/Node.js' { 195 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/Node'>; 196 | } 197 | declare module 'webpack-bundle-analyzer/lib/tree/utils.js' { 198 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/tree/utils'>; 199 | } 200 | declare module 'webpack-bundle-analyzer/lib/utils.js' { 201 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/utils'>; 202 | } 203 | declare module 'webpack-bundle-analyzer/lib/viewer.js' { 204 | declare module.exports: $Exports<'webpack-bundle-analyzer/lib/viewer'>; 205 | } 206 | declare module 'webpack-bundle-analyzer/public/viewer.js' { 207 | declare module.exports: $Exports<'webpack-bundle-analyzer/public/viewer'>; 208 | } 209 | declare module 'webpack-bundle-analyzer/src/analyzer.js' { 210 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/analyzer'>; 211 | } 212 | declare module 'webpack-bundle-analyzer/src/bin/analyzer.js' { 213 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/bin/analyzer'>; 214 | } 215 | declare module 'webpack-bundle-analyzer/src/BundleAnalyzerPlugin.js' { 216 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/BundleAnalyzerPlugin'>; 217 | } 218 | declare module 'webpack-bundle-analyzer/src/index.js' { 219 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/index'>; 220 | } 221 | declare module 'webpack-bundle-analyzer/src/Logger.js' { 222 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/Logger'>; 223 | } 224 | declare module 'webpack-bundle-analyzer/src/parseUtils.js' { 225 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/parseUtils'>; 226 | } 227 | declare module 'webpack-bundle-analyzer/src/tree/BaseFolder.js' { 228 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/BaseFolder'>; 229 | } 230 | declare module 'webpack-bundle-analyzer/src/tree/ConcatenatedModule.js' { 231 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/ConcatenatedModule'>; 232 | } 233 | declare module 'webpack-bundle-analyzer/src/tree/ContentFolder.js' { 234 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/ContentFolder'>; 235 | } 236 | declare module 'webpack-bundle-analyzer/src/tree/ContentModule.js' { 237 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/ContentModule'>; 238 | } 239 | declare module 'webpack-bundle-analyzer/src/tree/Folder.js' { 240 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/Folder'>; 241 | } 242 | declare module 'webpack-bundle-analyzer/src/tree/Module.js' { 243 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/Module'>; 244 | } 245 | declare module 'webpack-bundle-analyzer/src/tree/Node.js' { 246 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/Node'>; 247 | } 248 | declare module 'webpack-bundle-analyzer/src/tree/utils.js' { 249 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/tree/utils'>; 250 | } 251 | declare module 'webpack-bundle-analyzer/src/utils.js' { 252 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/utils'>; 253 | } 254 | declare module 'webpack-bundle-analyzer/src/viewer.js' { 255 | declare module.exports: $Exports<'webpack-bundle-analyzer/src/viewer'>; 256 | } 257 | -------------------------------------------------------------------------------- /flow-typed/npm/webpack-dev-server_vx.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: b343e3be48fabfefd067f1e0a58d1609 2 | // flow-typed version: <>/webpack-dev-server_v^3.1.4/flow_v0.77.0 3 | 4 | /** 5 | * This is an autogenerated libdef stub for: 6 | * 7 | * 'webpack-dev-server' 8 | * 9 | * Fill this stub out by replacing all the `any` types. 10 | * 11 | * Once filled out, we encourage you to share your work with the 12 | * community by sending a pull request to: 13 | * https://github.com/flowtype/flow-typed 14 | */ 15 | 16 | declare module 'webpack-dev-server' { 17 | declare module.exports: any; 18 | } 19 | 20 | /** 21 | * We include stubs for each file inside this npm package in case you need to 22 | * require those files directly. Feel free to delete any files that aren't 23 | * needed. 24 | */ 25 | declare module 'webpack-dev-server/bin/webpack-dev-server' { 26 | declare module.exports: any; 27 | } 28 | 29 | declare module 'webpack-dev-server/client/index.bundle' { 30 | declare module.exports: any; 31 | } 32 | 33 | declare module 'webpack-dev-server/client/index' { 34 | declare module.exports: any; 35 | } 36 | 37 | declare module 'webpack-dev-server/client/live.bundle' { 38 | declare module.exports: any; 39 | } 40 | 41 | declare module 'webpack-dev-server/client/overlay' { 42 | declare module.exports: any; 43 | } 44 | 45 | declare module 'webpack-dev-server/client/socket' { 46 | declare module.exports: any; 47 | } 48 | 49 | declare module 'webpack-dev-server/client/sockjs.bundle' { 50 | declare module.exports: any; 51 | } 52 | 53 | declare module 'webpack-dev-server/lib/createLog' { 54 | declare module.exports: any; 55 | } 56 | 57 | declare module 'webpack-dev-server/lib/OptionsValidationError' { 58 | declare module.exports: any; 59 | } 60 | 61 | declare module 'webpack-dev-server/lib/polyfills' { 62 | declare module.exports: any; 63 | } 64 | 65 | declare module 'webpack-dev-server/lib/Server' { 66 | declare module.exports: any; 67 | } 68 | 69 | declare module 'webpack-dev-server/lib/util/addDevServerEntrypoints' { 70 | declare module.exports: any; 71 | } 72 | 73 | declare module 'webpack-dev-server/lib/util/createDomain' { 74 | declare module.exports: any; 75 | } 76 | 77 | // Filename aliases 78 | declare module 'webpack-dev-server/bin/webpack-dev-server.js' { 79 | declare module.exports: $Exports<'webpack-dev-server/bin/webpack-dev-server'>; 80 | } 81 | declare module 'webpack-dev-server/client/index.bundle.js' { 82 | declare module.exports: $Exports<'webpack-dev-server/client/index.bundle'>; 83 | } 84 | declare module 'webpack-dev-server/client/index.js' { 85 | declare module.exports: $Exports<'webpack-dev-server/client/index'>; 86 | } 87 | declare module 'webpack-dev-server/client/live.bundle.js' { 88 | declare module.exports: $Exports<'webpack-dev-server/client/live.bundle'>; 89 | } 90 | declare module 'webpack-dev-server/client/overlay.js' { 91 | declare module.exports: $Exports<'webpack-dev-server/client/overlay'>; 92 | } 93 | declare module 'webpack-dev-server/client/socket.js' { 94 | declare module.exports: $Exports<'webpack-dev-server/client/socket'>; 95 | } 96 | declare module 'webpack-dev-server/client/sockjs.bundle.js' { 97 | declare module.exports: $Exports<'webpack-dev-server/client/sockjs.bundle'>; 98 | } 99 | declare module 'webpack-dev-server/lib/createLog.js' { 100 | declare module.exports: $Exports<'webpack-dev-server/lib/createLog'>; 101 | } 102 | declare module 'webpack-dev-server/lib/OptionsValidationError.js' { 103 | declare module.exports: $Exports<'webpack-dev-server/lib/OptionsValidationError'>; 104 | } 105 | declare module 'webpack-dev-server/lib/polyfills.js' { 106 | declare module.exports: $Exports<'webpack-dev-server/lib/polyfills'>; 107 | } 108 | declare module 'webpack-dev-server/lib/Server.js' { 109 | declare module.exports: $Exports<'webpack-dev-server/lib/Server'>; 110 | } 111 | declare module 'webpack-dev-server/lib/util/addDevServerEntrypoints.js' { 112 | declare module.exports: $Exports<'webpack-dev-server/lib/util/addDevServerEntrypoints'>; 113 | } 114 | declare module 'webpack-dev-server/lib/util/createDomain.js' { 115 | declare module.exports: $Exports<'webpack-dev-server/lib/util/createDomain'>; 116 | } 117 | -------------------------------------------------------------------------------- /flow-typed/npm/why-did-you-update_v0.x.x.js: -------------------------------------------------------------------------------- 1 | // flow-typed signature: 2991c1bc398f4e5a314e188fa39d27f2 2 | // flow-typed version: 1ad2a03c70/why-did-you-update_v0.x.x/flow_>=v0.41.x 3 | 4 | import * as React from "react"; 5 | 6 | declare module "why-did-you-update" { 7 | declare export function whyDidYouUpdate( 8 | React: { 9 | Component: typeof React$Component 10 | }, 11 | options?: Object 12 | ): void; 13 | } 14 | -------------------------------------------------------------------------------- /gh-pages.js: -------------------------------------------------------------------------------- 1 | var ghpages = require('gh-pages'); 2 | var path = require('path'); 3 | 4 | ghpages.publish(path.join(__dirname, './dist'), function(err) { 5 | console.log(err); 6 | }); 7 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wakatime-dashboard", 3 | "version": "1.0.0", 4 | "description": "Wakatime dashboard which fetching data from gist", 5 | "main": "lib/index.js", 6 | "directories": { 7 | "lib": "lib/" 8 | }, 9 | "scripts": { 10 | "dev": "webpack-dev-server --mode development --progress --hot --devtool source-map", 11 | "clear-dist": "rm -rf dist", 12 | "build-webpack": "cross-env NODE_ENV=production webpack --mode production --progress && cp -R public/* ./dist/ ", 13 | "build": "npm run clear-dist && npm run build-webpack", 14 | "prepages": "npm run build", 15 | "pages": "node gh-pages.js", 16 | "test": "karma start" 17 | }, 18 | "keywords": [ 19 | "wakatime", 20 | "dashboard", 21 | "sync", 22 | "gist" 23 | ], 24 | "files": [ 25 | "CHANGELOG.md", 26 | "lib", 27 | "src" 28 | ], 29 | "author": "superman", 30 | "license": "MIT", 31 | "repository": { 32 | "type": "git", 33 | "url": "https://github.com/superman66/wakatime-dashboard.git" 34 | }, 35 | "dependencies": { 36 | "@antv/data-set": "^0.9.1", 37 | "axios": "^0.18.0yar", 38 | "bizcharts": "^3.2.2", 39 | "classnames": ">=2.0.0", 40 | "moment": "^2.20.1", 41 | "prop-types": "^15.6.0", 42 | "react": "^16.2.0", 43 | "react-dom": "^16.2.0", 44 | "react-intl": "^2.4.0", 45 | "react-router": "3.2.0", 46 | "rsuite": "^3.2.2", 47 | "rsuite-utils": "^1.0.0" 48 | }, 49 | "peerDependencies": { 50 | "react": "^0.14.9 || >=15.3.0", 51 | "react-dom": "^0.14.9 || >=15.3.0" 52 | }, 53 | "devDependencies": { 54 | "algoliasearch": "^3.24.9", 55 | "autoprefixer": "^7.1.6", 56 | "babel-core": "^6.26.3", 57 | "babel-eslint": "^7.2.3", 58 | "babel-loader": "^7.1.4", 59 | "babel-plugin-add-module-exports": "^0.2.1", 60 | "babel-plugin-lodash": "^3.3.2", 61 | "babel-plugin-transform-class-properties": "^6.24.1", 62 | "babel-plugin-transform-dev": "^2.0.1", 63 | "babel-plugin-transform-proto-to-assign": "^6.26.0", 64 | "babel-plugin-transform-runtime": "^6.23.0", 65 | "babel-polyfill": "^6.26.0", 66 | "babel-preset-env": "^1.6.1", 67 | "babel-preset-react": "^6.24.1", 68 | "babel-preset-rsuite": "0.0.1", 69 | "babel-preset-stage-1": "^6.24.1", 70 | "brfs": "^1.4.3", 71 | "chai": "^3.5.0", 72 | "child-process-promise": "^2.0.2", 73 | "compression-webpack-plugin": "^1.0.1", 74 | "cross-env": "^7.0.2", 75 | "css-loader": "^0.28.11", 76 | "cssnano": "^3.10.0", 77 | "cz-conventional-changelog": "^2.1.0", 78 | "eslint": "^2.8.0", 79 | "eslint-plugin-babel": "^3.2.0", 80 | "eslint-plugin-react": "^5.0.1", 81 | "extract-text-webpack-plugin": "^4.0.0-beta.0", 82 | "file-loader": "^1.1.11", 83 | "fs-promise": "^0.5.0", 84 | "gh-pages": "^1.2.0", 85 | "glob": "^7.0.3", 86 | "html-loader": "^0.4.3", 87 | "html-webpack-plugin": "^3.0.6", 88 | "karma": "^0.13.22", 89 | "karma-chrome-launcher": "^0.2.3", 90 | "karma-cli": "^0.1.2", 91 | "karma-coverage": "^0.5.5", 92 | "karma-coveralls": "^1.1.2", 93 | "karma-firefox-launcher": "^0.1.7", 94 | "karma-mocha": "^0.2.2", 95 | "karma-mocha-reporter": "^2.0.0", 96 | "karma-sinon-chai": "^1.2.0", 97 | "karma-sourcemap-loader": "^0.3.7", 98 | "karma-webpack": "^1.7.0", 99 | "less": "^2.7.1", 100 | "less-loader": "^4.1.0", 101 | "lodash": "^4.11.1", 102 | "lodash-webpack-plugin": "^0.11.5", 103 | "mocha": "^2.5.3", 104 | "output-file-sync": "^1.1.1", 105 | "postcss-loader": "^2.0.9", 106 | "rimraf": "^2.5.2", 107 | "sinon": "^1.17.4", 108 | "sinon-chai": "^2.8.0", 109 | "style-loader": "^0.20.3", 110 | "svg-sprite-loader": "^3.7.1", 111 | "transform-loader": "^0.2.3", 112 | "url-loader": "^0.5.7", 113 | "webpack-bundle-analyzer": "^2.11.1", 114 | "webpack-dev-server": "^3.1.4", 115 | "why-did-you-update": "^0.1.1", 116 | "webpack": "^4.20.2", 117 | "webpack-cli": "^3.1.1", 118 | "react-hot-loader": "^4.0.0" 119 | }, 120 | "config": { 121 | "commitizen": { 122 | "path": "./node_modules/cz-conventional-changelog" 123 | } 124 | } 125 | } 126 | -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | const { NODE_ENV } = process.env; 2 | const __DEBUG__ = NODE_ENV === 'development'; 3 | 4 | const plugins = [ 5 | require('autoprefixer')({ 6 | browsers: [ 7 | '> 1%', 8 | 'last 2 versions', 9 | 'ie >= 9' 10 | ] 11 | }) 12 | ]; 13 | 14 | plugins.push(require('cssnano')({ 15 | preset: ['default', { 16 | discardComments: { 17 | removeAll: !__DEBUG__ 18 | } 19 | }] 20 | })); 21 | 22 | module.exports = { 23 | plugins 24 | }; 25 | -------------------------------------------------------------------------------- /public/_redirects: -------------------------------------------------------------------------------- 1 | /* /index.html 200 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superman66/wakatime-dashboard/9e7e4b39a8212db60456c5fe8b80d758d07aa5bd/public/favicon.ico -------------------------------------------------------------------------------- /public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superman66/wakatime-dashboard/9e7e4b39a8212db60456c5fe8b80d758d07aa5bd/public/logo.png -------------------------------------------------------------------------------- /public/resources/loading.css: -------------------------------------------------------------------------------- 1 | .body-loading { 2 | background: #000; 3 | } 4 | .body-loading .sk-cube-grid { 5 | display: block !important; 6 | } 7 | .sk-cube-grid { 8 | z-index: 10000; 9 | display: none; 10 | width: 40px; 11 | height: 40px; 12 | top: 50%; 13 | position: absolute; 14 | left: 50%; 15 | margin-top: -20px; 16 | margin-left: -20px; 17 | } 18 | 19 | .sk-cube-grid .sk-cube { 20 | width: 33%; 21 | height: 33%; 22 | background-color: #fff; 23 | float: left; 24 | -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 25 | animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out; 26 | } 27 | 28 | .sk-cube-grid .sk-cube1 { 29 | -webkit-animation-delay: 0.2s; 30 | animation-delay: 0.2s; 31 | } 32 | 33 | .sk-cube-grid .sk-cube2 { 34 | -webkit-animation-delay: 0.3s; 35 | animation-delay: 0.3s; 36 | } 37 | 38 | .sk-cube-grid .sk-cube3 { 39 | -webkit-animation-delay: 0.4s; 40 | animation-delay: 0.4s; 41 | } 42 | 43 | .sk-cube-grid .sk-cube4 { 44 | -webkit-animation-delay: 0.1s; 45 | animation-delay: 0.1s; 46 | } 47 | 48 | .sk-cube-grid .sk-cube5 { 49 | -webkit-animation-delay: 0.2s; 50 | animation-delay: 0.2s; 51 | } 52 | 53 | .sk-cube-grid .sk-cube6 { 54 | -webkit-animation-delay: 0.3s; 55 | animation-delay: 0.3s; 56 | } 57 | 58 | .sk-cube-grid .sk-cube7 { 59 | -webkit-animation-delay: 0s; 60 | animation-delay: 0s; 61 | } 62 | 63 | .sk-cube-grid .sk-cube8 { 64 | -webkit-animation-delay: 0.1s; 65 | animation-delay: 0.1s; 66 | } 67 | 68 | .sk-cube-grid .sk-cube9 { 69 | -webkit-animation-delay: 0.2s; 70 | animation-delay: 0.2s; 71 | } 72 | 73 | @-webkit-keyframes sk-cubeGridScaleDelay { 74 | 0%, 75 | 70%, 76 | 100% { 77 | -webkit-transform: scale3D(1, 1, 1); 78 | transform: scale3D(1, 1, 1); 79 | } 80 | 35% { 81 | -webkit-transform: scale3D(0, 0, 1); 82 | transform: scale3D(0, 0, 1); 83 | } 84 | } 85 | 86 | @keyframes sk-cubeGridScaleDelay { 87 | 0%, 88 | 70%, 89 | 100% { 90 | -webkit-transform: scale3D(1, 1, 1); 91 | transform: scale3D(1, 1, 1); 92 | } 93 | 35% { 94 | -webkit-transform: scale3D(0, 0, 1); 95 | transform: scale3D(0, 0, 1); 96 | } 97 | } 98 | -------------------------------------------------------------------------------- /screenshot/wakatime-dashboard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superman66/wakatime-dashboard/9e7e4b39a8212db60456c5fe8b80d758d07aa5bd/screenshot/wakatime-dashboard.jpg -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- 1 | // @flow 2 | 3 | import * as React from 'react'; 4 | import { Router, browserHistory } from 'react-router'; 5 | import { IntlProvider } from 'react-intl'; 6 | import { IntlProvider as RSIntlProvider } from 'rsuite'; 7 | 8 | import enGB from 'rsuite/lib/IntlProvider/locales/en_GB'; 9 | import locales from './locales'; 10 | import routes from './routes'; 11 | 12 | type Props = {}; 13 | 14 | class App extends React.Component { 15 | render() { 16 | return ( 17 | 18 | 19 | 20 | 21 | 22 | ); 23 | } 24 | } 25 | 26 | export default App; 27 | -------------------------------------------------------------------------------- /src/components/ErrorPage/ErrorPage.js: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import { FormattedMessage } from 'react-intl'; 3 | import * as errors from '../../images/errors'; 4 | 5 | const ErrorPage = ({ code = 404 }) => ( 6 |
7 |
8 | 9 |
10 |

{code}

11 |

12 | 13 |

14 |
15 |
16 |
17 | ); 18 | 19 | export default ErrorPage; 20 | -------------------------------------------------------------------------------- /src/components/ErrorPage/index.js: -------------------------------------------------------------------------------- 1 | import ErrorPage from './ErrorPage'; 2 | 3 | export default ErrorPage; 4 | -------------------------------------------------------------------------------- /src/components/ErrorPage/styles.less: -------------------------------------------------------------------------------- 1 | .error-page { 2 | display: flex; 3 | height: 100vh; 4 | margin-top: -40px; 5 | justify-content: center; 6 | align-items: center; 7 | .item { 8 | img { 9 | height: 260px; 10 | } 11 | .text { 12 | text-align: center; 13 | color: @H500; 14 | } 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/components/Frame/Footer.js: -------------------------------------------------------------------------------- 1 | import React from 'react'; 2 | 3 | export default () => { 4 | return ( 5 | 11 | ); 12 | }; 13 | -------------------------------------------------------------------------------- /src/components/Frame/Frame.js: -------------------------------------------------------------------------------- 1 | import * as React from 'react'; 2 | import classNames from 'classnames'; 3 | import PropTypes from 'prop-types'; 4 | import { Link } from 'react-router'; 5 | import { 6 | Container, 7 | Sidebar, 8 | Sidenav, 9 | Icon, 10 | Header, 11 | Content, 12 | Dropdown, 13 | Nav, 14 | DOMHelper 15 | } from 'rsuite'; 16 | 17 | import NavToggle from './NavToggle'; 18 | import HeaderAvatar from '../HeaderAvatar'; 19 | import Footer from './Footer'; 20 | 21 | const { getHeight, on } = DOMHelper; 22 | const navs = [ 23 | { 24 | key: '1', 25 | icon: , 26 | text: 'Dashboard', 27 | link: '/dashboard' 28 | } 29 | ]; 30 | 31 | class Frame extends React.Component { 32 | resizeListenner = null; 33 | static contextTypes = { 34 | router: PropTypes.object 35 | }; 36 | constructor(props: Props) { 37 | super(props); 38 | this.state = { 39 | windowHeight: getHeight(window), 40 | expand: false 41 | }; 42 | this.resizeListenner = on(window, 'resize', this.updateHeight); 43 | } 44 | updateHeight = () => { 45 | this.setState({ 46 | windowHeight: getHeight(window) 47 | }); 48 | }; 49 | handleToggle = () => { 50 | this.setState({ 51 | expand: !this.state.expand 52 | }); 53 | }; 54 | 55 | componentWillUnmount() { 56 | if (this.resizeListenner) { 57 | this.resizeListenner.off(); 58 | } 59 | } 60 | 61 | renderNavs() { 62 | return navs.map(item => { 63 | if (item.children) { 64 | return ( 65 | 73 | {item.children.map(child => { 74 | return ( 75 | 82 | {child.text} 83 | 84 | ); 85 | })} 86 | 87 | ); 88 | } 89 | 90 | return ( 91 | 99 | {item.text} 100 | 101 | ); 102 | }); 103 | } 104 | render() { 105 | const { children } = this.props; 106 | const { expand, windowHeight } = this.state; 107 | 108 | const containerClasses = classNames('page-container', { 109 | 'container-full': !expand 110 | }); 111 | 112 | let navBodyStyle = null; 113 | if (expand) { 114 | navBodyStyle = { 115 | height: windowHeight - 112, 116 | overflow: 'auto' 117 | }; 118 | } 119 | 120 | return ( 121 | 122 | 127 | 128 |
129 | 130 | wakatime dashboard 131 | 132 |
133 |
134 | 135 | 136 | 153 | 154 | 155 | 156 |
157 | 158 | 159 | 160 | {children} 161 |