├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── lib ├── JSX.js ├── index.js └── knownTags.js ├── package.json └── test ├── bench.js └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/jsx-transpiler/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/jsx-transpiler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/jsx-transpiler/HEAD/README.md -------------------------------------------------------------------------------- /lib/JSX.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/jsx-transpiler/HEAD/lib/JSX.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/jsx-transpiler/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/knownTags.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/jsx-transpiler/HEAD/lib/knownTags.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/jsx-transpiler/HEAD/package.json -------------------------------------------------------------------------------- /test/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/jsx-transpiler/HEAD/test/bench.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RReverser/jsx-transpiler/HEAD/test/test.js --------------------------------------------------------------------------------