我试图使用gruntjs开始一个新项目。
我有这个项目结构:
grunt-test (dir)
|_ index.html
|_ package.json
|_ Gruntfile.js
|_ assets (dir)
|_ _js (dir)
|_ scripts.js
|_ _sass (dir)
|_ style.sass
我安装了nodejs和grunt。
因此,当我转到项目文件夹并在终端上使用此命令行时:npm install grunt --save-dev
它返回了我所有这些错误:
npm ERR! Failed to parse json
npm ERR! Unexpected end of input
npm ERR! File: /Applications/XAMPP/xamppfiles/htdocs/grunt-test/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! System Darwin 11.4.2
npm ERR! command "node" "/usr/local/bin/npm" "install" "grunt" "--save-dev"
npm ERR! cwd /Applications/XAMPP/xamppfiles/htdocs/grunt-test
npm ERR! node -v v0.10.26
npm ERR! npm -v 1.4.3
npm ERR! file /Applications/XAMPP/xamppfiles/htdocs/grunt-test/package.json
npm ERR! code EJSONPARSE
npm ERR!
npm ERR! Additional logging details can be found in:
npm ERR! /Applications/XAMPP/xamppfiles/htdocs/grunt-test/npm-debug.log
npm ERR! not ok code 0
我一直试图安装它一段时间,但我没有取得任何成功。我不知道自己做错了什么。我遵循gruntjs文档的所有说明。有人能帮助我吗?
答案 0 :(得分:2)
您的package.json
不是有效JSON
。您可以在devDependencies
文件中将package.json
添加为npm install
,而不是输入命令,然后使用package.json
来安装{
"name": "Project Name",
"version": "1.0.0",
"devDependencies": {
"grunt": "0.4.4",
"grunt-cli": "0.1.13"
}
}
文件中的包。您可以使用以下内容。
npm install grunt-cli -g
如果未找到grunt
,则运行{{1}}。
答案 1 :(得分:0)
在package.json中,字符串被括在单引号中('),这使得它成为无效的JSON数据。 JSON期望将字符串括在双引号中(")。