node-http-proxy/package.json

21 lines
389 B
JSON
Raw Normal View History

2019-01-25 00:54:48 +00:00
{
"name": "node-http-proxy",
"version": "1.0.0",
"description": "A proxy built using NodeJS",
"main": "index.js",
"scripts": {
2019-01-25 03:13:48 +00:00
"test": "jest",
2019-01-25 00:54:48 +00:00
"run": "node index.js"
},
"author": "jaketothepast",
"license": "MIT",
"dependencies": {
2019-01-26 12:48:52 +00:00
"express": "^4.16.4",
2019-01-27 14:06:56 +00:00
"sqlite3": "^4.0.6",
2019-01-26 12:48:52 +00:00
"winston": "^3.1.0"
2019-01-25 03:09:42 +00:00
},
"devDependencies": {
"jest": "^23.6.0"
2019-01-25 00:54:48 +00:00
}
}