質問編集履歴

1

package\.jsonを追記

2015/12/07 01:29

投稿

muro
muro

スコア99

test CHANGED
File without changes
test CHANGED
@@ -101,3 +101,79 @@
101
101
 
102
102
 
103
103
  htmlは出力されているので、いちおうこのままでも作業をできないことはないのですが、保存するたびに同じエラーメッセージが出ては煩わしいので、このエラーを解決したいです。
104
+
105
+
106
+
107
+ 【追記】
108
+
109
+ package.jsonは以下のとおりです。
110
+
111
+ ```json
112
+
113
+ {
114
+
115
+ "name": "default",
116
+
117
+ "version": "1.0.0",
118
+
119
+ "description": "",
120
+
121
+ "main": "index.js",
122
+
123
+ "dependencies": {
124
+
125
+ "gulp-coffee": "^2.3.1",
126
+
127
+ "gulp-autoprefixer": "^3.1.0",
128
+
129
+ "gulp": "^3.9.0",
130
+
131
+ "gulp-jade-php": "^1.1.0",
132
+
133
+ "gulp-jade": "^1.1.0",
134
+
135
+ "gulp-sass": "^2.1.0",
136
+
137
+ "gulp-load-plugins": "^1.1.0",
138
+
139
+ "gulp-notify": "^2.2.0",
140
+
141
+ "gulp-sourcemaps": "^1.6.0",
142
+
143
+ "gulp-plumber": "^1.0.1",
144
+
145
+ "node-sass": "^3.4.2"
146
+
147
+ },
148
+
149
+ "devDependencies": {
150
+
151
+ "gulp-rename": "^1.2.2"
152
+
153
+ },
154
+
155
+ "scripts": {
156
+
157
+ "test": "echo \"Error: no test specified\" && exit 1"
158
+
159
+ },
160
+
161
+ "repository": {
162
+
163
+ "type": "git",
164
+
165
+ "url": "git+https://○○:○○@bitbucket.org/○○/○○.git"
166
+
167
+ },
168
+
169
+ "author": "",
170
+
171
+ "license": "ISC",
172
+
173
+ "homepage": "https://bitbucket.org/○○/○○#readme"
174
+
175
+ }
176
+
177
+
178
+
179
+ ```