forked from thomas-darling/gulp-dependents
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.25 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
{
"name": "gulp-dependents",
"version": "1.2.5",
"description": "Gulp plugin that tracks dependencies between files and adds any files that depend on the files currently in the stream, thus enabling incremental build of pcss, less, scss, sass, with extensibility points to support other file types.",
"keywords": [
"gulp",
"incremental",
"dependencies",
"dependents",
"dependent",
"include",
"import",
"compile",
"build",
"less",
"sass",
"scss"
],
"license": "MIT",
"author": {
"name": "Thomas Darling"
},
"homepage": "https://github.com/thomas-darling/gulp-dependents",
"bugs": {
"url": "https://github.com/thomas-darling/gulp-dependents/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/thomas-darling/gulp-dependents.git"
},
"dependencies": {
"fancy-log": "^1.3.3",
"through2": "^3.0.1",
"vinyl": "^2.2.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/fancy-log": "^1.3.1",
"@types/mkdirp": "^1.0.0",
"@types/node": "^14.0.5",
"@types/through2": "^2.0.32",
"@types/vinyl": "^2.0.0",
"typescript": "^3.9.3"
},
"scripts": {
"prepare": "tsc"
},
"types": "lib/index.d.ts",
"main": "lib/index.js"
}