mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30:21 +01:00
46 lines
807 B
JSON
46 lines
807 B
JSON
{
|
|
"name": "haste",
|
|
"version": "0.2.2",
|
|
"description": "Private Pastebin Server - continued by zneix",
|
|
"keywords": [
|
|
"paste",
|
|
"pastebin",
|
|
"haste",
|
|
"hastebin"
|
|
],
|
|
"author": {
|
|
"name": "John Crepezzi",
|
|
"email": "john.crepezzi@gmail.com",
|
|
"url": "http://seejohncode.com/"
|
|
},
|
|
"main": "server.js",
|
|
"dependencies": {
|
|
"babel-minify": "^0.5.1",
|
|
"busboy": "^0.3.1",
|
|
"express": "^4.17.1",
|
|
"express-rate-limit": "^5.1.3",
|
|
"pg": "^8.3.2",
|
|
"redis": "^3.0.2",
|
|
"redis-url": "^1.2.1",
|
|
"st": "^2.0.0",
|
|
"winston": "^3.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^8.1.2"
|
|
},
|
|
"bin": {
|
|
"haste-server": "./server.js"
|
|
},
|
|
"files": [
|
|
"server.js",
|
|
"lib",
|
|
"static"
|
|
],
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"test": "mocha --recursive"
|
|
}
|
|
}
|