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

44 lines
1021 B
JSON

9 years ago
{
"name": "paste",
"version": "1.3.1",
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> (https://joebiellik.com/)",
9 years ago
"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": {
"config": "^3.0.0",
"koa": "^2.3.0",
"koa-body": "^4.0.4",
"koa-compress": "^3.0.0",
"koa-logger": "^3.0.1",
"koa-router": "^7.2.1",
"koa-static-cache": "^5.1.1",
"koa-views": "^6.0.2",
"mongoose": "^5.3.13",
"pug": "^2.0.0-rc.2",
9 years ago
"shortid": "^2.2.4"
9 years ago
},
"devDependencies": {
"eslint": "^5.9.0",
"nodemon": "^1.18.6",
"pug-lint": "^2.5.0"
9 years ago
}
}