├── .eslintrc ├── .gitignore ├── .travis.yml ├── README.md ├── jsonplus.d.ts ├── package.json ├── parse.js └── tests ├── fixtures ├── all-out.json ├── comments.json ├── complex-tags.json ├── deep-link.json ├── external-file-complex.json ├── external-file-wrong-path.json ├── external-file.json ├── external-file2.json ├── first-level-array-templates.json ├── first-level-array.json ├── not-found.json ├── reference-to-reference.json ├── simple-self-reference.json ├── template-tags.json └── template-tags2.json └── tests.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/README.md -------------------------------------------------------------------------------- /jsonplus.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/jsonplus.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/package.json -------------------------------------------------------------------------------- /parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/parse.js -------------------------------------------------------------------------------- /tests/fixtures/all-out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/all-out.json -------------------------------------------------------------------------------- /tests/fixtures/comments.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/comments.json -------------------------------------------------------------------------------- /tests/fixtures/complex-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/complex-tags.json -------------------------------------------------------------------------------- /tests/fixtures/deep-link.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/deep-link.json -------------------------------------------------------------------------------- /tests/fixtures/external-file-complex.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/external-file-complex.json -------------------------------------------------------------------------------- /tests/fixtures/external-file-wrong-path.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/external-file-wrong-path.json -------------------------------------------------------------------------------- /tests/fixtures/external-file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/external-file.json -------------------------------------------------------------------------------- /tests/fixtures/external-file2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/external-file2.json -------------------------------------------------------------------------------- /tests/fixtures/first-level-array-templates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/first-level-array-templates.json -------------------------------------------------------------------------------- /tests/fixtures/first-level-array.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/first-level-array.json -------------------------------------------------------------------------------- /tests/fixtures/not-found.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/not-found.json -------------------------------------------------------------------------------- /tests/fixtures/reference-to-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/reference-to-reference.json -------------------------------------------------------------------------------- /tests/fixtures/simple-self-reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/simple-self-reference.json -------------------------------------------------------------------------------- /tests/fixtures/template-tags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/template-tags.json -------------------------------------------------------------------------------- /tests/fixtures/template-tags2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/fixtures/template-tags2.json -------------------------------------------------------------------------------- /tests/tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/serkanyersen/jsonplus/HEAD/tests/tests.js --------------------------------------------------------------------------------