├── .babelrc ├── .gitignore ├── .npmignore ├── README.md ├── docs └── publish-to-npm.md ├── package.json └── src ├── index.js ├── snippet.js └── tools.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ "es2015" ] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebarty/analytics-js-without-segment/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebarty/analytics-js-without-segment/HEAD/README.md -------------------------------------------------------------------------------- /docs/publish-to-npm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebarty/analytics-js-without-segment/HEAD/docs/publish-to-npm.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebarty/analytics-js-without-segment/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebarty/analytics-js-without-segment/HEAD/src/index.js -------------------------------------------------------------------------------- /src/snippet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebarty/analytics-js-without-segment/HEAD/src/snippet.js -------------------------------------------------------------------------------- /src/tools.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thebarty/analytics-js-without-segment/HEAD/src/tools.js --------------------------------------------------------------------------------