-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 944 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
41
42
43
{
"name": "gulp-sass-partials-imported",
"version": "1.0.7",
"description": "It process scss partials files and add the files that import them to the pipe.",
"license": "MIT",
"repository": "g100g/gulp-sass-partials-imported",
"author": {
"name": "G100g",
"email": "[email protected]",
"url": "http://g100g.net"
},
"contributors": [
"Davide Cantelli <[email protected]> (http://davidecantelli.it/)"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "tape specs/tests.js | tap-spec",
"lint": "eslint ."
},
"files": [
"index.js"
],
"keywords": [
"gulpplugin",
"sass",
"import",
"imported",
"cache"
],
"dependencies": {
"through2": "^2.0.1",
"vinyl-file": "^2.0.0",
"sass-graph": "^2.1.1"
},
"devDependencies": {
"eslint-plugin-filenames": "^0.2.0",
"gulp": "^3.9.1",
"tap-spec": "^4.1.1",
"tape": "^4.5.1"
}
}