├── .github └── CODEOWNERS ├── .gitignore ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── gulpfile.js ├── package.json ├── tests ├── basic.html └── runner.html ├── wct.conf.json └── webcomponents-platform.js /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @azakus 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | webcomponents-platform.min.js* 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .github/ 2 | tests/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/webcomponents-platform/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/webcomponents-platform/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/webcomponents-platform/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/webcomponents-platform/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/webcomponents-platform/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/webcomponents-platform/HEAD/package.json -------------------------------------------------------------------------------- /tests/basic.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/webcomponents-platform/HEAD/tests/basic.html -------------------------------------------------------------------------------- /tests/runner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/webcomponents-platform/HEAD/tests/runner.html -------------------------------------------------------------------------------- /wct.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/webcomponents-platform/HEAD/wct.conf.json -------------------------------------------------------------------------------- /webcomponents-platform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/webcomponents/webcomponents-platform/HEAD/webcomponents-platform.js --------------------------------------------------------------------------------