Summary: switch to httptoolkit Reviewers: kuba-orlik Reviewed By: kuba-orlik Differential Revision: https://hub.sealcode.org/D1578
36 lines
723 B
JSON
36 lines
723 B
JSON
{
|
|
"name": "proxy_thing",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"license": "ISC",
|
|
"author": "",
|
|
"type": "commonjs",
|
|
"main": "./lib/index.js",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"build": "tsc",
|
|
"start": "tsc && node dist/index.js",
|
|
"lint": "tslint -c tslint.json src/**/*.ts",
|
|
"prepublish": "npm run build"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.21.2",
|
|
"mockttp": "^3.16.0",
|
|
"ts-node": "^10.9.2",
|
|
"tslint": "^5.20.1",
|
|
"ws": "^8.18.1"
|
|
},
|
|
"files": [
|
|
"./bin/*",
|
|
"./lib/*"
|
|
],
|
|
"typings": "./lib/index.d.ts",
|
|
"directories": {
|
|
"lib": "lib"
|
|
},
|
|
"devDependencies": {
|
|
"typescript": "^5.8.2"
|
|
},
|
|
"keywords": []
|
|
}
|