uglify-js와 관련된 npm 문제

uglify-js와 관련된 npm 문제

node.js를 사용하여 Raspberry Pi에서 프로젝트를 실행하려고 합니다(이 가이드에 따름).http://blog.donaldderek.com/2013/06/build-your-own-google-tv-using-raspberrypi-nodejs-and-socket-io/) 그리고 npm에 몇 가지 문제가 있습니다. 시도했을 때 npm install많은 오류가 발생했는데 그 중 첫 번째는 다음과 같습니다.npm ERR! error installing [email protected]

npm ls주어진

npm WARN jade * Unmet dependency in /home/pi/app/RaspberryPiTV
npm WARN base64id 0.1.0 Unmet dependency in /home/pi/app/RaspberryPiTV/node_modules/socket.io
npm WARN policyfile 0.0.4 Unmet dependency in /home/pi/app/RaspberryPiTV/node_modules/socket.io
npm WARN socket.io-client 0.9.11 Unmet dependency in /home/pi/app/RaspberryPiTV/node_modules/socket.io
[email protected] /home/pi/app/RaspberryPiTV
ââ⬠[email protected]
â âââ [email protected]
â âââ [email protected]
â ââ⬠[email protected]
â â âââ [email protected]
â â âââ [email protected]
â â âââ [email protected]
â â âââ [email protected]
â â âââ [email protected]
â âââ [email protected]
â âââ [email protected]
â âââ [email protected]
â âââ [email protected]
â âââ [email protected]
â âââ [email protected]
â âââ [email protected]
â ââ⬠[email protected]
â   âââ [email protected]
âââ UNMET DEPENDENCY jade *
âââ [email protected]
ââ⬠[email protected]
â âââ UNMET DEPENDENCY base64id 0.1.0
â âââ UNMET DEPENDENCY policyfile 0.0.4
â âââ UNMET DEPENDENCY socket.io-client 0.9.11
âââ [email protected]  extraneous

이것은 내 package.json 파일입니다.

{
  "name": "GoogleTV-rPi",
  "version": "1.2.1",
  "private": false,
  "scripts": {
    "start": "node app.js"
  },
  "dependencies": {
    "express": "3.1.1",
    "jade": "*",
    "socket.io": "0.9.14",
    "omxcontrol": "*"
  },
  "devDependencies": {},
  "optionalDependencies": {},
  "engines": {
    "node": "*"
  }
}

노드 버전은 v0.10.7입니다. npm 버전은 1.1.4입니다.

내가 뭘 잘못하고 있는지, 아니면 해결 방법이 있는지 아시나요?

관련 정보