forked from gulpjs/gulp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.4 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
66
{
"name": "@xavescor/gulp",
"version": "5.1.2",
"description": "The streaming build system.",
"homepage": "https://gulpjs.com",
"author": "Andrew Vassilyev <github@xavescor.dev>",
"contributors": [
"Andrew Vassilyev <github@xavescor.dev>",
"Gulp Team <team@gulpjs.com>",
"Eric Schoffstall <yo@contra.io>",
"Blaine Bublitz <blaine.bublitz@gmail.com>"
],
"repository": "xavescor/gulp",
"license": "MIT",
"engines": {
"node": ">= 18",
"pnpm": "~8.7"
},
"main": "index.js",
"files": [
"LICENSE",
"index.js",
"bin",
"src"
],
"bin": {
"gulp": "./bin/gulp.js"
},
"scripts": {
"foo": "gulp -T",
"test": "vitest"
},
"dependencies": {
"chokidar": "^3.5.3",
"collection-map": "^1.0.0",
"end-of-stream": "^1.4.4",
"fast-levenshtein": "^1.0.0",
"gulp-cli": "^2.2.0",
"just-debounce": "^1.0.0",
"last-run": "^1.1.0",
"object.defaults": "^1.0.0",
"stream-exhaust": "^1.0.2",
"undertaker-registry": "^1.0.0",
"vinyl-fs": "^3.0.0"
},
"devDependencies": {
"gulp-jshint": "^1.8.4",
"prettier": "^3.0.3",
"through2": "^2.0.0",
"undertaker-common-tasks": "^1.0.0",
"undertaker-task-metadata": "^1.0.0",
"vitest": "^0.34.6"
},
"keywords": [
"build",
"stream",
"system",
"make",
"tool",
"asset",
"pipeline",
"series",
"parallel",
"streaming"
]
}