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

48 lines
1.1 KiB
JSON

9 years ago
{
"name": "paste",
8 years ago
"version": "1.2.0",
9 years ago
"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": {
8 years ago
"watch": "nodemon -L -e js,json",
"lint": "eslint . && pug-lint ./views"
9 years ago
},
"dependencies": {
"babel-core": "^6.1.2",
"babel-polyfill": "^6.0.16",
"babel-preset-es2015": "^6.1.2",
9 years ago
"config": "^1.16.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": "^4.1.0",
9 years ago
"mongoose": "^4.1.12",
"pug": "^2.0.0-beta4",
9 years ago
"shortid": "^2.2.4"
9 years ago
},
"devDependencies": {
"babel-eslint": "^7.1.0",
"eslint": "^3.2.2",
"nodemon": "^1.7.2",
"pug-lint": "^2.3.0"
9 years ago
}
}