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.
47 lines
841 B
47 lines
841 B
{ |
|
"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" |
|
}, |
|
"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/*" |
|
} |
|
}
|
|
|