1
0
Fork 0
mirror of https://github.com/seejohnrun/haste-server.git synced 2024-11-01 03:21:21 +00:00
haste-server/package.json

48 lines
889 B
JSON
Raw Normal View History

2011-11-18 20:44:28 +00:00
{
2012-09-19 18:28:52 +00:00
"name": "haste",
2012-09-27 15:51:15 +00:00
"version": "0.1.0",
2012-09-19 18:28:52 +00: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 21:20:40 +00:00
"connect-ratelimit": "0.0.7",
"connect-route": "0.1.5",
"pg": "^8.0.0",
2012-09-27 15:50:12 +00: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 18:28:52 +00:00
},
"devDependencies": {
"mocha": "^8.1.3"
2011-11-18 20:44:28 +00:00
},
2012-09-19 18:28:52 +00: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 15:38:14 +00:00
}
2011-11-18 20:44:28 +00:00
}