-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
40 lines (40 loc) · 942 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "gulp-json-sass",
"description": "Gulp plugin for turning JSON files into files of scss/sass variable definitions.",
"version": "0.0.2",
"scripts": {
"test": "npm run coverage && npm run rm",
"coverage": "istanbul cover test/*.js",
"rm": "rimraf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/rbalicki2/gulp-json-sass"
},
"keywords": [
"gulp",
"json",
"sass",
"scss",
"css"
],
"bugs": {
"url": "https://github.com/rbalicki2/gulp-json-sass/issues"
},
"homepage": "https://github.com/rbalicki2/gulp-json-sass",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"gulp": "^3.8.6",
"gulp-concat": "^2.3.4",
"gulp-ruby-sass": "^0.7.1",
"tape": "^2.14.0",
"through2": "^0.5.1"
},
"dependencies": {
"chalk": "^0.5.1",
"gulp-match": "^0.2.0",
"gulp-util": "^3.0.0",
"through": "^2.3.4"
}
}