新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
43 lines
1.0 KiB
JSON
43 lines
1.0 KiB
JSON
{
|
|
"name": "eslint-import-resolver-node",
|
|
"version": "0.3.10",
|
|
"description": "Node default behavior import resolution plugin for eslint-plugin-import.",
|
|
"main": "index.js",
|
|
"files": [
|
|
"index.js"
|
|
],
|
|
"scripts": {
|
|
"prepublishOnly": "cp ../../{LICENSE,.npmrc} ./",
|
|
"tests-only": "nyc mocha",
|
|
"test": "npm run tests-only"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/import-js/eslint-plugin-import",
|
|
"directory": "resolvers/node"
|
|
},
|
|
"keywords": [
|
|
"eslint",
|
|
"eslintplugin",
|
|
"esnext",
|
|
"modules",
|
|
"eslint-plugin-import"
|
|
],
|
|
"author": "Ben Mosher (me@benmosher.com)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/import-js/eslint-plugin-import/issues"
|
|
},
|
|
"homepage": "https://github.com/import-js/eslint-plugin-import",
|
|
"dependencies": {
|
|
"debug": "^3.2.7",
|
|
"is-core-module": "^2.16.1",
|
|
"resolve": "^2.0.0-next.6"
|
|
},
|
|
"devDependencies": {
|
|
"chai": "^3.5.0",
|
|
"mocha": "^3.5.3",
|
|
"nyc": "^11.9.0"
|
|
}
|
|
}
|