You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
701 B
52 lines
701 B
{ |
|
|
|
"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": "*", |
|
"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/*" |
|
} |
|
|
|
}
|
|
|