forked from gulpjs/gulp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.13 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
{
"name": "@bubblegroup/gulp",
"version": "4.0.5",
"description": "The streaming build system.",
"homepage": "https://gulpjs.com",
"author": "Gulp Team <team@gulpjs.com> (https://gulpjs.com/)",
"contributors": [
"Eric Schoffstall <yo@contra.io>",
"Blaine Bublitz <blaine.bublitz@gmail.com>"
],
"repository": "bubblegroup/gulp",
"license": "MIT",
"engines": {
"node": ">= 0.10"
},
"main": "index.js",
"files": [
"LICENSE",
"index.js",
"bin"
],
"bin": {
"gulp": "./bin/gulp.js"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "npx mocha --async-only"
},
"dependencies": {
"@bubblegroup/glob-watcher": "^5.0.7",
"@bubblegroup/vinyl-fs": "^3.0.4",
"gulp-cli": "^3.0.0",
"undertaker": "^1.2.1"
},
"devDependencies": {
"eslint": "^8.37.0",
"eslint-plugin-node": "^11.1.0",
"expect": "^1.20.2",
"mkdirp": "^0.5.1",
"mocha": "^10.2.0",
"rimraf": "^2.6.3"
},
"keywords": [
"build",
"stream",
"system",
"make",
"tool",
"asset",
"pipeline",
"series",
"parallel",
"streaming"
]
}