mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 03:21:21 +00:00
51 lines
660 B
JSON
51 lines
660 B
JSON
|
{
|
||
|
|
||
|
"name": "haste",
|
||
|
"version": "0.0.1",
|
||
|
|
||
|
"private": true,
|
||
|
|
||
|
"description": "Private Paste",
|
||
|
|
||
|
"keywords": [ "paste", "pastebin" ],
|
||
|
|
||
|
"author": {
|
||
|
"name": "John Crepezzi",
|
||
|
"email": "john.crepezzi@gmail.com",
|
||
|
"url": "http://seejohncode.com/"
|
||
|
},
|
||
|
|
||
|
"main": "haste",
|
||
|
|
||
|
"dependencies": {
|
||
|
"winston": "*",
|
||
|
"hashlib": "*"
|
||
|
},
|
||
|
|
||
|
"devDependencies": {
|
||
|
"jasmine-node": "*"
|
||
|
},
|
||
|
|
||
|
"bundledDependencies": [],
|
||
|
|
||
|
"engines": {
|
||
|
"node": "*"
|
||
|
},
|
||
|
|
||
|
"bin": {
|
||
|
"haste-server": "./server.js"
|
||
|
},
|
||
|
|
||
|
"files": [ "server.js", "lib", "static" ],
|
||
|
|
||
|
"directories": {
|
||
|
"lib": "./lib"
|
||
|
},
|
||
|
|
||
|
"scripts": {
|
||
|
"start": "node server.js",
|
||
|
"test": "jasmine-node spec"
|
||
|
}
|
||
|
|
||
|
}
|