forked from hoho/gulp-dedupe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 997 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
{
"name": "@fomantic/gulp-dedupe",
"description": "Check for duplicates in the stream and filter them or throw an error",
"version": "0.0.3",
"homepage": "https://github.com/fomantic/gulp-dedupe",
"repository": "git://github.com/fomantic/gulp-dedupe.git",
"author": "Marat Abdullin <[email protected]>",
"license": "MIT",
"main": "./index.js",
"keywords": [
"gulpplugin",
"dedupe",
"duplicates"
],
"bugs": {
"url": "https://github.com/hoho/gulp-dedupe/issues"
},
"dependencies": {
"colors": "^1.4.0",
"diff": "^5.1.0",
"lodash.defaults": "^4.2.0",
"plugin-error": "^2.0.0",
"through": "^2.3.8"
},
"devDependencies": {
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"should": "^13.2.3",
"vinyl": "^3.0.0"
},
"scripts": {
"test": "mocha",
"coverage": "nyc mocha"
},
"engines": {
"node": ">=12"
}
}