mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 03:21:21 +00:00
52 lines
711 B
JSON
52 lines
711 B
JSON
{
|
|
|
|
"name": "haste",
|
|
"version": "0.0.1",
|
|
|
|
"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": "*",
|
|
"connect": "< 2",
|
|
"uglify-js": "*"
|
|
},
|
|
|
|
"devDependencies": {
|
|
"mocha": "*",
|
|
"should": "*"
|
|
},
|
|
|
|
"bundledDependencies": [],
|
|
|
|
"engines": {
|
|
"node": "*"
|
|
},
|
|
|
|
"bin": {
|
|
"haste-server": "./server.js"
|
|
},
|
|
|
|
"files": [ "server.js", "lib", "static" ],
|
|
|
|
"directories": {
|
|
"lib": "./lib"
|
|
},
|
|
|
|
"scripts": {
|
|
"start": "node server.js",
|
|
"test": "mocha -r should spec/*"
|
|
}
|
|
|
|
}
|