- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스) - Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포 - 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
54 lines
1.1 KiB
JSON
54 lines
1.1 KiB
JSON
{
|
|
"name": "@expo/spawn-async",
|
|
"version": "1.8.0",
|
|
"description": "A Promise-based interface into processes created by child_process.spawn",
|
|
"main": "./build/spawnAsync.js",
|
|
"types": "./build/spawnAsync.d.ts",
|
|
"files": [
|
|
"build",
|
|
"!build/**/__tests__"
|
|
],
|
|
"engines": {
|
|
"node": ">=12"
|
|
},
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"clean": "rm -rf build",
|
|
"prepare": "yarn clean && yarn build",
|
|
"start": "tsc --watch",
|
|
"test": "jest"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/expo/spawn-async.git"
|
|
},
|
|
"keywords": [
|
|
"spawn",
|
|
"child_process",
|
|
"async",
|
|
"promise",
|
|
"process"
|
|
],
|
|
"author": "Expo",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/expo/spawn-async/issues"
|
|
},
|
|
"homepage": "https://github.com/expo/spawn-async#readme",
|
|
"jest": {
|
|
"preset": "ts-jest",
|
|
"rootDir": "src"
|
|
},
|
|
"dependencies": {
|
|
"cross-spawn": "^7.0.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cross-spawn": "^6.0.2",
|
|
"@types/jest": "^29.5.0",
|
|
"@types/node": "^18.15.3",
|
|
"jest": "^29.5.0",
|
|
"ts-jest": "^29.0.5",
|
|
"typescript": "^5.0.2"
|
|
}
|
|
}
|