2011-11-18 15:44:28 -05:00
|
|
|
{
|
2012-09-19 14:28:52 -04:00
|
|
|
"name": "haste",
|
2012-09-27 11:51:15 -04:00
|
|
|
"version": "0.1.0",
|
2012-09-19 14:28:52 -04: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": {
|
2020-10-05 23:50:28 -04:00
|
|
|
"busboy": "0.2.4",
|
|
|
|
"connect": "^3.7.0",
|
2016-03-06 16:20:40 -05:00
|
|
|
"connect-ratelimit": "0.0.7",
|
|
|
|
"connect-route": "0.1.5",
|
2020-10-06 20:29:06 -04:00
|
|
|
"pg": "^8.0.0",
|
2020-07-07 18:59:56 +00:00
|
|
|
"dotenv": "^8.2.0",
|
2012-09-27 11:50:12 -04:00
|
|
|
"redis": "0.8.1",
|
2020-10-05 23:50:28 -04:00
|
|
|
"redis-url": "0.1.0",
|
|
|
|
"st": "^2.0.0",
|
2017-10-31 21:19:22 -04:00
|
|
|
"uglify-js": "3.1.6",
|
2020-10-05 23:50:28 -04:00
|
|
|
"winston": "^2.0.0"
|
2012-09-19 14:28:52 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-05 23:50:28 -04:00
|
|
|
"mocha": "^8.1.3"
|
2011-11-18 15:44:28 -05:00
|
|
|
},
|
2012-09-19 14:28:52 -04:00
|
|
|
"bundledDependencies": [],
|
|
|
|
"bin": {
|
|
|
|
"haste-server": "./server.js"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"server.js",
|
|
|
|
"lib",
|
|
|
|
"static"
|
|
|
|
],
|
|
|
|
"directories": {
|
|
|
|
"lib": "./lib"
|
|
|
|
},
|
|
|
|
"scripts": {
|
|
|
|
"start": "node server.js",
|
2017-10-31 20:40:43 -04:00
|
|
|
"test": "mocha --recursive"
|
2012-09-27 11:38:14 -04:00
|
|
|
}
|
2011-11-18 15:44:28 -05:00
|
|
|
}
|