2015-06-22 111 views
0

我的電腦崩潰了,現在沒有安裝包可以使用。爲什麼我不能用npm安裝任何gulp依賴項?

這就是在命令行所示:

npm install --save-dev gulp-autoprefixer 
npm ERR! Windows_NT 6.3.9600 
npm ERR! argv "C:\\Program Files\\nodejs\\\\node.exe" "C:\\Program Files\\nodejs\\node_modules\\npm\\bin\\npm-c 
li.js" "install" "--save-dev" "gulp-autoprefixer" 
npm ERR! node v0.12.0 
npm ERR! npm v2.10.1 
npm ERR! file C:\Users\buddy\AppData\Roaming\npm-cache\readable-stream\1.0.33\package\package.json 
npm ERR! code EJSONPARSE 

npm ERR! Failed to parse json 
npm ERR! Unexpected token 
npm ERR! File: C:\Users\buddy\AppData\Roaming\npm-cache\readable-stream\1.0.33\package\package.json 
npm ERR! Failed to parse package.json data. 
npm ERR! package.json must be actual JSON, not just JavaScript. 
npm ERR! 
npm ERR! This is not a bug in npm. 
npm ERR! Tell the package author to fix their package.json file. JSON.parse 

npm ERR! Please include the following file with any support request: 
npm ERR!  C:\Users\buddy\Desktop\BuildTest\npm-debug.log 
+0

我看到一些令人不安的'npm-debug.log'。請[編輯]添加。 –

+0

npm-debug.log非常長,這就是爲什麼我沒有發佈它。這裏是否有字符限制? – 91eahz

+0

爲了將來的參考,有但是30k個字符通常就足夠了。這個技巧是在最近發生錯誤之前將日誌修剪到重要部分。 –

回答

2

npm ERR! Failed to parse package.json data. npm ERR! package.json must be actual JSON, not just JavaScript. npm ERR! npm ERR! This is not a bug in npm.

,告訴你,你需要知道的一切。您需要確保您的package.json是有效的JSON。

我會建議linting它,也許通過http://jsonlint.com/

+0

我做了它沒有問題。雖然我通過刪除我的npm-cache文件夾解決了這個問題,但現在一切似乎都奏效@Nathan – 91eahz