forked from sindresorhus/gulp-ruby-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.3 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "gulp-ruby-sass",
"version": "2.0.0",
"description": "Compile Sass to CSS with Ruby Sass",
"license": "MIT",
"repository": "sindresorhus/gulp-ruby-sass",
"maintainers": [
{
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "sindresorhus.com"
},
{
"name": "Rob Wierzbowski",
"email": "[email protected]",
"web": "robwierzbowski.com"
}
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "xo && cd test && mocha test.js"
},
"files": [
"index.js",
"logger.js"
],
"keywords": [
"gulpplugin",
"scss",
"sass",
"css",
"compile",
"preprocessor",
"style",
"ruby",
"source-map",
"source-maps",
"sourcemap",
"sourcemaps"
],
"dependencies": {
"convert-source-map": "^1.0.0",
"cross-spawn-async": "^2.0.0",
"dargs": "^2.0.3",
"each-async": "^1.0.0",
"glob": "^5.0.5",
"glob2base": "0.0.12",
"gulp-util": "^3.0.4",
"md5-hex": "^1.0.2",
"object-assign": "^4.0.1",
"os-tmpdir": "^1.0.0",
"path-exists": "^2.0.0",
"rimraf": "^2.2.8",
"vinyl-fs": "^1.0.0"
},
"devDependencies": {
"gulp": "^3.8.11",
"gulp-sourcemaps": "^1.2.7",
"mocha": "*",
"vinyl-file": "^1.2.1",
"xo": "*"
}
}