├── .gitignore ├── LICENSE.txt ├── Makefile ├── README.md ├── json.applescript └── tests.applescript /.gitignore: -------------------------------------------------------------------------------- 1 | *.scpt 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgax/applescript-json/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgax/applescript-json/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgax/applescript-json/HEAD/README.md -------------------------------------------------------------------------------- /json.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgax/applescript-json/HEAD/json.applescript -------------------------------------------------------------------------------- /tests.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgax/applescript-json/HEAD/tests.applescript --------------------------------------------------------------------------------