├── .babelrc ├── .eslintrc ├── .gitignore ├── Makefile ├── Readme.md ├── package.json └── src ├── NS ├── blendMode.js ├── blur.js ├── border.js ├── color.js ├── fill.js ├── font.js ├── kern.js ├── shadows.js ├── spacing.js └── textDecoration.js ├── exporter.js ├── importer.js ├── index.js ├── jsonPath.js ├── layer.js ├── layers ├── artboardLayer.js ├── general.js ├── groupLayer.js ├── imageLayer.js ├── pageLayer.js ├── pathLayer.js ├── shapeGroupLayer.js ├── symbolLayer.js ├── symbolMasterLayer.js ├── textLayer.js └── types.js ├── sharedStyle.js ├── sharedTextStyle.js └── util.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/Makefile -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/Readme.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/package.json -------------------------------------------------------------------------------- /src/NS/blendMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/NS/blendMode.js -------------------------------------------------------------------------------- /src/NS/blur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/NS/blur.js -------------------------------------------------------------------------------- /src/NS/border.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/NS/border.js -------------------------------------------------------------------------------- /src/NS/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/NS/color.js -------------------------------------------------------------------------------- /src/NS/fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/NS/fill.js -------------------------------------------------------------------------------- /src/NS/font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/NS/font.js -------------------------------------------------------------------------------- /src/NS/kern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/NS/kern.js -------------------------------------------------------------------------------- /src/NS/shadows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/NS/shadows.js -------------------------------------------------------------------------------- /src/NS/spacing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/NS/spacing.js -------------------------------------------------------------------------------- /src/NS/textDecoration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/NS/textDecoration.js -------------------------------------------------------------------------------- /src/exporter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/exporter.js -------------------------------------------------------------------------------- /src/importer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/importer.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/index.js -------------------------------------------------------------------------------- /src/jsonPath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/jsonPath.js -------------------------------------------------------------------------------- /src/layer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layer.js -------------------------------------------------------------------------------- /src/layers/artboardLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layers/artboardLayer.js -------------------------------------------------------------------------------- /src/layers/general.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layers/general.js -------------------------------------------------------------------------------- /src/layers/groupLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layers/groupLayer.js -------------------------------------------------------------------------------- /src/layers/imageLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layers/imageLayer.js -------------------------------------------------------------------------------- /src/layers/pageLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layers/pageLayer.js -------------------------------------------------------------------------------- /src/layers/pathLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layers/pathLayer.js -------------------------------------------------------------------------------- /src/layers/shapeGroupLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layers/shapeGroupLayer.js -------------------------------------------------------------------------------- /src/layers/symbolLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layers/symbolLayer.js -------------------------------------------------------------------------------- /src/layers/symbolMasterLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layers/symbolMasterLayer.js -------------------------------------------------------------------------------- /src/layers/textLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layers/textLayer.js -------------------------------------------------------------------------------- /src/layers/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/layers/types.js -------------------------------------------------------------------------------- /src/sharedStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/sharedStyle.js -------------------------------------------------------------------------------- /src/sharedTextStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/sharedTextStyle.js -------------------------------------------------------------------------------- /src/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieudutour/sketch-module-json-sync/HEAD/src/util.js --------------------------------------------------------------------------------