You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
paste/package.json

46 lines
1.1 KiB
JSON

{
"name": "paste",
"version": "1.0.0",
"description": "Simple Node.js pastebin",
"license": "MIT",
"repository": "JoeBiellik/paste",
"homepage": "https://github.com/JoeBiellik/paste",
"author": "Joe Biellik <contact@joebiellik.com> (http://joebiellik.com/)",
"bugs": {
"email": "contact@joebiellik.com",
"url": "https://github.com/JoeBiellik/paste/issues"
},
"keywords": [
"pastebin",
"paste",
"node",
"koa",
"mongodb"
],
"main": "server.js",
"scripts": {
"start": "node .",
"watch": "./node_modules/.bin/nodemon -L -e js,json",
"lint": "./node_modules/.bin/eslint ."
},
"dependencies": {
"babel": "^5.8.23",
"config": "^1.16.0",
"jade": "^1.11.0",
"koa": "^1.1.0",
"koa-body": "^1.3.0",
"koa-compress": "^1.0.8",
"koa-logger": "^1.3.0",
"koa-router": "^5.2.3",
"koa-static-cache": "^3.1.2",
"koa-views": "^3.1.0",
"mongoose": "^4.1.12",
"short-mongo-id": "^0.1.1"
},
"devDependencies": {
"babel-eslint": "^4.1.3",
"eslint": "^1.7.2",
"nodemon": "^1.7.2"
}
}