forked from rbalicki2/gulp-json-sass
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1003 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1003 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "gulp-json-css",
"description": "Gulp plugin for turning JSON files into files of scss/sass/less variable definitions.",
"version": "0.2.3",
"scripts": {
"test": "npm run coverage && npm run rm",
"coverage": "istanbul cover test/*.js",
"rm": "rimraf ./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/SimonHarte/gulp-json-css"
},
"keywords": [
"gulp",
"json",
"sass",
"scss",
"less",
"css"
],
"bugs": {
"url": "https://github.com/SimonHarte/gulp-json-css/issues"
},
"homepage": "https://github.com/SimonHarte/gulp-json-css",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"gulp": "^3.8.6",
"gulp-concat": "^2.3.4",
"gulp-less": "^3.0.5",
"gulp-sass": "^2.1.1",
"tape": "^2.14.0",
"through2": "^0.5.1"
},
"dependencies": {
"chalk": "^0.5.1",
"gulp-match": "^0.2.0",
"gulp-util": "^3.0.0",
"merge": "^1.2.0",
"through": "^2.3.4"
}
}