JSO file format - gardhr/jalosi GitHub Wiki

The JSO file format is basically just Javascript that looks a bit like JSON.

{
  name: "ChattyChat",
  version: "1.2.3",
  modified: new Date(),
  description: "Real-time chat application for node",
  main: "index.js",
  homepage: "https://github.com/ChattyCat/ChattyChat#readme",
  author: "ChattyCat",
  license: "MIT",
  bugs: {
    url: "https://github.com/ChattyCat/ChattyChat/issues"
  },
  keywords: ["talk chat"],
  scripts: {
    test: "node test"
  }
}

Files are usually given a .jso extension, but Jalosi loads them natively in any case.

Used by the jtj utility to convert JSO files to JSON.