├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── resources ├── preconf-icon.png └── preconf-logo.png ├── rollup.config.js ├── src └── index.js └── test └── index.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacor/preconf/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | /node_modules 3 | /npm-debug.log 4 | .DS_Store 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacor/preconf/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacor/preconf/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacor/preconf/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacor/preconf/HEAD/package.json -------------------------------------------------------------------------------- /resources/preconf-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacor/preconf/HEAD/resources/preconf-icon.png -------------------------------------------------------------------------------- /resources/preconf-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacor/preconf/HEAD/resources/preconf-logo.png -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacor/preconf/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacor/preconf/HEAD/src/index.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synacor/preconf/HEAD/test/index.js --------------------------------------------------------------------------------