├── .circleci └── config.yml ├── .eslintrc ├── .gitignore ├── README.md ├── bin └── story-json-validate.js ├── examples ├── advanced │ └── story.json ├── hello-world │ └── story.json └── video │ └── story.json ├── package.json └── validator └── index.js /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micnews/story-json/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micnews/story-json/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micnews/story-json/HEAD/README.md -------------------------------------------------------------------------------- /bin/story-json-validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micnews/story-json/HEAD/bin/story-json-validate.js -------------------------------------------------------------------------------- /examples/advanced/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micnews/story-json/HEAD/examples/advanced/story.json -------------------------------------------------------------------------------- /examples/hello-world/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micnews/story-json/HEAD/examples/hello-world/story.json -------------------------------------------------------------------------------- /examples/video/story.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micnews/story-json/HEAD/examples/video/story.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micnews/story-json/HEAD/package.json -------------------------------------------------------------------------------- /validator/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/micnews/story-json/HEAD/validator/index.js --------------------------------------------------------------------------------