haste-server/package.json

49 lines
864 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": {
2012-09-27 17:38:14 +02:00
"winston": "0.6.2",
"connect": "1.9.2",
2012-09-27 17:46:53 +02:00
"redis-url": "0.1.0",
2012-09-27 17:50:12 +02:00
"redis": "0.8.1",
"uglify-js": "1.3.3",
"busboy": "0.2.4"
2012-09-19 20:28:52 +02:00
},
"devDependencies": {
"mocha": "*",
"should": "*"
2011-11-18 21:44:28 +01:00
},
2012-09-19 20:28:52 +02:00
"bundledDependencies": [],
"engines": {
2012-09-27 17:56:15 +02:00
"node": "0.8.10",
2012-09-27 17:56:49 +02:00
"npm": "1.1.49"
2012-09-19 20:28:52 +02:00
},
"bin": {
"haste-server": "./server.js"
},
"files": [
"server.js",
"lib",
"static"
],
"directories": {
"lib": "./lib"
},
"scripts": {
"start": "node server.js",
"test": "mocha -r should spec/*"
2012-09-27 17:38:14 +02:00
}
2011-11-18 21:44:28 +01:00
}