新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
31 lines
710 B
JSON
31 lines
710 B
JSON
{
|
|
"name": "http-deceiver",
|
|
"version": "1.2.7",
|
|
"description": "Deceive HTTP parser",
|
|
"main": "lib/deceiver.js",
|
|
"scripts": {
|
|
"test": "mocha --reporter=spec test/*-test.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/indutny/http-deceiver.git"
|
|
},
|
|
"keywords": [
|
|
"http",
|
|
"net",
|
|
"deceive"
|
|
],
|
|
"author": "Fedor Indutny <fedor@indutny.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/indutny/http-deceiver/issues"
|
|
},
|
|
"homepage": "https://github.com/indutny/http-deceiver#readme",
|
|
"devDependencies": {
|
|
"handle-thing": "^1.0.1",
|
|
"mocha": "^2.2.5",
|
|
"readable-stream": "^2.0.1",
|
|
"stream-pair": "^1.0.0"
|
|
}
|
|
}
|