mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30:21 +01:00
47 lines
918 B
JSON
47 lines
918 B
JSON
{
|
|
"name": "haste",
|
|
"version": "0.1.0",
|
|
"private": false,
|
|
"description": "Private Pastebin Server - continued by zneix",
|
|
"keywords": [
|
|
"paste",
|
|
"pastebin"
|
|
],
|
|
"author": {
|
|
"name": "John Crepezzi",
|
|
"email": "john.crepezzi@gmail.com",
|
|
"url": "http://seejohncode.com/"
|
|
},
|
|
"main": "server.js",
|
|
"dependencies": {
|
|
"busboy": "^0.3.1",
|
|
"connect": "^3.7.0",
|
|
"connect-ratelimit": "0.0.7",
|
|
"connect-route": "0.1.5",
|
|
"pg": "^8.3.2",
|
|
"redis": "^3.0.2",
|
|
"redis-url": "^1.2.1",
|
|
"st": "^2.0.0",
|
|
"uglify-js": "3.1.6",
|
|
"winston": "^0.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^8.1.2"
|
|
},
|
|
"bundledDependencies": [],
|
|
"bin": {
|
|
"haste-server": "./server.js"
|
|
},
|
|
"files": [
|
|
"server.js",
|
|
"lib",
|
|
"static"
|
|
],
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"test": "mocha --recursive"
|
|
}
|
|
}
|