├── .editorconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── index.js ├── package.json ├── readme.md └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velocityzen/meta-extractor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules 3 | coverage 4 | .nyc_output 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .git* 3 | coverage 4 | .nyc_output 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velocityzen/meta-extractor/HEAD/LICENSE -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velocityzen/meta-extractor/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velocityzen/meta-extractor/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velocityzen/meta-extractor/HEAD/readme.md -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/velocityzen/meta-extractor/HEAD/test.js --------------------------------------------------------------------------------