-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 720 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "node-sass-watch-import-css-bug",
"description": "repro case for node-sass bug: https://github.com/sass/node-sass/issues/2185",
"license": "",
"readme": "README.md",
"repository": {
"type": "git",
"url": "git@github.com:RoyTinker/node-sass-watch-import-css-bug.git"
},
"version": "0.0.1",
"author": {
"name": "Roy Tinker",
"email": "roytinker@gmail.com"
},
"private": true,
"devDependencies": {
"node-sass": "^4.7.2",
"concurrently": "^3.5.1"
},
"scripts": {
"sass": "node-sass ./src -r -o ./src --source-map true",
"watch:sass": "node-sass --watch ./src -r -o ./src --source-map true"
}
}