diff --git a/.gitignore b/.gitignore index 0e2d44a..5a97d2e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,13 @@ .DS_Store + +#submodules csl/ -csl-locales/ \ No newline at end of file +csl-locales/ + +#node +node_modules +logs +*.log + +#npm +npm-debug.log \ No newline at end of file diff --git a/package.json b/package.json new file mode 100644 index 0000000..113ed41 --- /dev/null +++ b/package.json @@ -0,0 +1,27 @@ +{ + "name": "bibliographe", + "version": "0.0.0", + "description": "bibliographic processor util", + "main": "generatebib.js", + "scripts": { + "test": "echo \"HAHA! NONO!\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://github.com/gauthiier/bibliographe.git" + }, + "keywords": [ + "citeproc" + ], + "author": "gauthiier", + "license": "MIT", + "bugs": { + "url": "https://github.com/gauthiier/bibliographe/issues" + }, + "homepage": "https://github.com/gauthiier/bibliographe", + "private": "true", + "dependencies" : { + "underscore": "1.6.x", + "jsdom": "0.5.x" + } +}