haste-server/package.json

48 lines
889 B
JSON
Raw Normal View History

2011-11-18 21:44:28 +01:00
{
2012-09-19 20:28:52 +02:00
"name": "haste",
2012-09-27 17:51:15 +02:00
"version": "0.1.0",
2012-09-19 20:28:52 +02:00
"private": true,
"description": "Private Pastebin Server",
"keywords": [
"paste",
"pastebin"
],
"author": {
"name": "John Crepezzi",
"email": "john.crepezzi@gmail.com",
"url": "http://seejohncode.com/"
},
"main": "haste",
"dependencies": {
"busboy": "0.2.4",
"connect": "^3.7.0",
2016-03-06 22:20:40 +01:00
"connect-ratelimit": "0.0.7",
"connect-route": "0.1.5",
"pg": "^8.0.0",
2012-09-27 17:50:12 +02:00
"redis": "0.8.1",
"redis-url": "0.1.0",
"st": "^2.0.0",
"uglify-js": "3.1.6",
"winston": "^2.0.0"
2012-09-19 20:28:52 +02:00
},
"devDependencies": {
"mocha": "^8.1.3"
2011-11-18 21:44:28 +01:00
},
2012-09-19 20:28:52 +02:00
"bundledDependencies": [],
"bin": {
"haste-server": "./server.js"
},
"files": [
"server.js",
"lib",
"static"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"start": "node server.js",
"test": "mocha --recursive"
2012-09-27 17:38:14 +02:00
}
2011-11-18 21:44:28 +01:00
}