-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
42 lines (42 loc) · 969 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
{
"name": "gulp-import-css",
"description": "Import several css files into a single file, one by one, rebasing urls and inlining @import",
"version": "0.1.3",
"homepage": "https://github.com/yuguo/gulp-import-css",
"author": {
"name": "Yuguo"
},
"repository": {
"type": "git",
"url": "git://github.com/yuguo/gulp-import-css"
},
"bugs": {
"url": "https://github.com/yuguo/gulp-import-css/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/yuguo/gulp-import-css/blob/master/LICENSE"
}
],
"main": "./index.js",
"dependencies": {
"gulp-util": "~2.2.14",
"through2": "~0.4.1",
"rework-importer": "~0.4.0",
"rework": "~0.20.2"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.7.1",
"mocha": "^3.1.0"
},
"scripts": {
"test": "eslint index.js && mocha --reporter spec test/main"
},
"keywords": [
"gulpplugin",
"import",
"css"
]
}