mirror of
https://github.com/SunRed/haste-server.git
synced 2024-11-01 01:30:21 +01:00
0471b059a0
Closes #54
48 lines
864 B
JSON
48 lines
864 B
JSON
{
|
|
"name": "haste",
|
|
"version": "0.1.0",
|
|
"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": {
|
|
"winston": "0.6.2",
|
|
"connect": "1.9.2",
|
|
"redis-url": "0.1.0",
|
|
"redis": "0.8.1",
|
|
"uglify-js": "1.3.3",
|
|
"busboy": "0.2.4"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "*",
|
|
"should": "*"
|
|
},
|
|
"bundledDependencies": [],
|
|
"engines": {
|
|
"node": "0.8.10",
|
|
"npm": "1.1.49"
|
|
},
|
|
"bin": {
|
|
"haste-server": "./server.js"
|
|
},
|
|
"files": [
|
|
"server.js",
|
|
"lib",
|
|
"static"
|
|
],
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"test": "mocha -r should spec/*"
|
|
}
|
|
}
|