├── .editorconfig ├── .gitignore ├── .huskyrc.json ├── .lintstagedrc.json ├── .nvmrc ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── README.md ├── alfred-caniuse.png ├── data.sample.json ├── dist └── bundle.js ├── icon.png ├── icons ├── android.png ├── baidu.png ├── chrome.png ├── edge.png ├── firefox.png ├── ie.png ├── opera.png ├── other.png ├── qq.png ├── safari.png ├── samsung.png └── uc.png ├── info.plist ├── package.json ├── src ├── SupportItem.js ├── SupportTable.js ├── features.js ├── index.js ├── transform.js └── utils.js └── webpack.config.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/.gitignore -------------------------------------------------------------------------------- /.huskyrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/.huskyrc.json -------------------------------------------------------------------------------- /.lintstagedrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/.lintstagedrc.json -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/* 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/README.md -------------------------------------------------------------------------------- /alfred-caniuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/alfred-caniuse.png -------------------------------------------------------------------------------- /data.sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/data.sample.json -------------------------------------------------------------------------------- /dist/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/dist/bundle.js -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icon.png -------------------------------------------------------------------------------- /icons/android.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/android.png -------------------------------------------------------------------------------- /icons/baidu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/baidu.png -------------------------------------------------------------------------------- /icons/chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/chrome.png -------------------------------------------------------------------------------- /icons/edge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/edge.png -------------------------------------------------------------------------------- /icons/firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/firefox.png -------------------------------------------------------------------------------- /icons/ie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/ie.png -------------------------------------------------------------------------------- /icons/opera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/opera.png -------------------------------------------------------------------------------- /icons/other.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/other.png -------------------------------------------------------------------------------- /icons/qq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/qq.png -------------------------------------------------------------------------------- /icons/safari.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/safari.png -------------------------------------------------------------------------------- /icons/samsung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/samsung.png -------------------------------------------------------------------------------- /icons/uc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/icons/uc.png -------------------------------------------------------------------------------- /info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/info.plist -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/package.json -------------------------------------------------------------------------------- /src/SupportItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/src/SupportItem.js -------------------------------------------------------------------------------- /src/SupportTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/src/SupportTable.js -------------------------------------------------------------------------------- /src/features.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/src/features.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/src/index.js -------------------------------------------------------------------------------- /src/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/src/transform.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/src/utils.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robjtede/alfred-caniuse/HEAD/webpack.config.js --------------------------------------------------------------------------------