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.
51 lines
949 B
51 lines
949 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": { |
|
"busboy": "0.2.4", |
|
"connect": "^3.7.0", |
|
"connect-ratelimit": "0.0.7", |
|
"connect-route": "0.1.5", |
|
"pg": "^8.4.0", |
|
"redis": "0.8.1", |
|
"redis-url": "0.1.0", |
|
"st": "^2.0.0", |
|
"uglify-js": "3.1.6", |
|
"winston": "^2.0.0" |
|
}, |
|
"devDependencies": { |
|
"mocha": "^8.1.3" |
|
}, |
|
"bundledDependencies": [], |
|
"engines": { |
|
"node": "8.1.4", |
|
"npm": "5.2.0" |
|
}, |
|
"bin": { |
|
"haste-server": "./server.js" |
|
}, |
|
"files": [ |
|
"server.js", |
|
"lib", |
|
"static" |
|
], |
|
"directories": { |
|
"lib": "./lib" |
|
}, |
|
"scripts": { |
|
"start": "node server.js", |
|
"test": "mocha --recursive" |
|
} |
|
}
|
|
|