├── .circleci └── config.yml ├── .eslintrc ├── .gitignore ├── HISTORY.md ├── LICENSE ├── Makefile ├── README.md ├── karma.conf.ci.js ├── karma.conf.js ├── lib ├── index.js ├── protos.js └── statics.js ├── package.json ├── test ├── .eslintrc ├── index.test.js └── support │ ├── example-script.js │ ├── example.png │ └── iframe.html └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@segment/eslint-config/browser/legacy" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage 2 | node_modules 3 | -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/README.md -------------------------------------------------------------------------------- /karma.conf.ci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/karma.conf.ci.js -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/karma.conf.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/protos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/lib/protos.js -------------------------------------------------------------------------------- /lib/statics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/lib/statics.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@segment/eslint-config/mocha" 3 | } 4 | -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/support/example-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/test/support/example-script.js -------------------------------------------------------------------------------- /test/support/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/test/support/example.png -------------------------------------------------------------------------------- /test/support/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/test/support/iframe.html -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/segmentio/analytics.js-integration/HEAD/yarn.lock --------------------------------------------------------------------------------