-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.26 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
{
"name": "gulp-prune",
"version": "2.0.1",
"description": "Delete files that should not be in the destination directory",
"type": "module",
"exports": "./src/index.js",
"types": "src/index.d.ts",
"scripts": {
"compile": "eslint src/*.js && tsc",
"test": "mocha src/test.js",
"prepublishOnly": "tsc"
},
"keywords": [
"gulpplugin",
"prune",
"delete",
"files"
],
"author": {
"name": "Jordan Mele",
"email": "[email protected]",
"url": "https://djmm.me/"
},
"contributors": [
{
"name": "Kurt Blackwell",
"url": "https://github.com/hh10k"
}
],
"repository": {
"type": "git",
"url": "https://github.com/userfrosting/gulp-prune.git"
},
"bugs": {
"url": "https://github.com/userfrosting/gulp-prune/issues"
},
"license": "ISC",
"devDependencies": {
"@types/fancy-log": "^2.0.0",
"@types/node": "^20.3.3",
"@types/vinyl": "^2.0.6",
"c8": "^9.1.0",
"eslint": "^8.57.0",
"mocha": "^10.0.0",
"mock-fs": "^5.1.4",
"typescript": "^5.1.3"
},
"dependencies": {
"ansi-colors": "^4.1.3",
"fancy-log": "^2.0.0",
"globby": "^14.0.1",
"plugin-error": "^2.0.0",
"vinyl": "^3.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}