├── .gitignore ├── .gitmodules ├── COPYING ├── README.md ├── citeprocnode-repl.js ├── config └── default.json ├── lib ├── citeServer.js ├── citeproc.js ├── citeprocnode.js ├── csl_json.js ├── engineCaching.js ├── json_walker.js ├── locales.js └── styles.js ├── node_example.js ├── package.json ├── sampledata.json ├── test ├── benchServer.js ├── loadcitesnode.js ├── prettyRequestBodyJson ├── repltest.js ├── stdNodeTest.js ├── test.json ├── testRequestBody.json ├── testRequestBody2.json └── testallstyles.js ├── testciteproc.js └── xmltojson.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/.gitmodules -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/README.md -------------------------------------------------------------------------------- /citeprocnode-repl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/citeprocnode-repl.js -------------------------------------------------------------------------------- /config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/config/default.json -------------------------------------------------------------------------------- /lib/citeServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/lib/citeServer.js -------------------------------------------------------------------------------- /lib/citeproc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/lib/citeproc.js -------------------------------------------------------------------------------- /lib/citeprocnode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/lib/citeprocnode.js -------------------------------------------------------------------------------- /lib/csl_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/lib/csl_json.js -------------------------------------------------------------------------------- /lib/engineCaching.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/lib/engineCaching.js -------------------------------------------------------------------------------- /lib/json_walker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/lib/json_walker.js -------------------------------------------------------------------------------- /lib/locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/lib/locales.js -------------------------------------------------------------------------------- /lib/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/lib/styles.js -------------------------------------------------------------------------------- /node_example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/node_example.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/package.json -------------------------------------------------------------------------------- /sampledata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/sampledata.json -------------------------------------------------------------------------------- /test/benchServer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/test/benchServer.js -------------------------------------------------------------------------------- /test/loadcitesnode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/test/loadcitesnode.js -------------------------------------------------------------------------------- /test/prettyRequestBodyJson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/test/prettyRequestBodyJson -------------------------------------------------------------------------------- /test/repltest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/test/repltest.js -------------------------------------------------------------------------------- /test/stdNodeTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/test/stdNodeTest.js -------------------------------------------------------------------------------- /test/test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/test/test.json -------------------------------------------------------------------------------- /test/testRequestBody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/test/testRequestBody.json -------------------------------------------------------------------------------- /test/testRequestBody2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/test/testRequestBody2.json -------------------------------------------------------------------------------- /test/testallstyles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/test/testallstyles.js -------------------------------------------------------------------------------- /testciteproc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/testciteproc.js -------------------------------------------------------------------------------- /xmltojson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zotero/citeproc-js-server/HEAD/xmltojson.py --------------------------------------------------------------------------------