This commit is contained in:
gauthiier 2014-07-15 19:32:51 +02:00
parent be04f5139d
commit 9a2ae1238c
2 changed files with 38 additions and 1 deletions

12
.gitignore vendored
View File

@ -1,3 +1,13 @@
.DS_Store .DS_Store
#submodules
csl/ csl/
csl-locales/ csl-locales/
#node
node_modules
logs
*.log
#npm
npm-debug.log

27
package.json Normal file
View File

@ -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"
}
}