-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
36 lines (36 loc) · 911 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
{
"name": "gulp-dedupe",
"description": "Check for duplicates in the stream and filter them or throw an error",
"version": "0.0.2",
"homepage": "https://github.com/hoho/gulp-dedupe",
"repository": "git://github.com/hoho/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.0.2",
"diff": "~1.0.8",
"lodash.defaults": "~2.4.1",
"plugin-error": "^1.0.1",
"through": "~2.3.6"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"vinyl": "^2.1.0"
},
"scripts": {
"test": "mocha"
},
"engines": {
"node": ">=0.10"
}
}