2011-11-18 21:44:28 +01:00
|
|
|
{
|
2020-08-26 04:54:58 +02:00
|
|
|
"name": "haste",
|
2020-09-20 18:18:38 +02:00
|
|
|
"version": "0.2.5",
|
2020-08-26 04:54:58 +02:00
|
|
|
"description": "Private Pastebin Server - continued by zneix",
|
|
|
|
"keywords": [
|
|
|
|
"paste",
|
|
|
|
"pastebin",
|
|
|
|
"haste",
|
|
|
|
"hastebin"
|
|
|
|
],
|
|
|
|
"author": {
|
|
|
|
"name": "John Crepezzi",
|
|
|
|
"email": "john.crepezzi@gmail.com",
|
|
|
|
"url": "http://seejohncode.com/"
|
|
|
|
},
|
|
|
|
"main": "server.js",
|
|
|
|
"dependencies": {
|
2020-09-20 18:18:38 +02:00
|
|
|
"@babel/cli": "^7.11.6",
|
|
|
|
"@babel/core": "^7.11.6",
|
|
|
|
"babel-plugin-minify-mangle-names": "^0.5.0",
|
2020-08-26 04:54:58 +02:00
|
|
|
"busboy": "^0.3.1",
|
|
|
|
"express": "^4.17.1",
|
|
|
|
"express-rate-limit": "^5.1.3",
|
|
|
|
"st": "^2.0.0",
|
|
|
|
"winston": "^3.3.3"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-01 01:22:07 +02:00
|
|
|
"eslint": "^7.10.0",
|
2020-09-02 16:23:04 +02:00
|
|
|
"mocha": "^8.1.3"
|
2020-08-26 04:54:58 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-09-20 18:18:38 +02:00
|
|
|
"build": "npm install && npx babel --plugins minify-mangle-names --no-comments --minified static/application.js --out-file static/application.min.js",
|
2020-08-26 04:54:58 +02:00
|
|
|
"start": "node server.js",
|
2020-10-01 01:12:07 +02:00
|
|
|
"test": "mocha --recursive",
|
|
|
|
"testformat": "npx eslint ./"
|
2020-08-26 04:54:58 +02:00
|
|
|
}
|
2011-11-18 21:44:28 +01:00
|
|
|
}
|