-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "gulp-tap",
"version": "2.0.0",
"description": "Easiest way to tap into a pipeline",
"main": "index.js",
"scripts": {
"pretest": "coffee --compile --map tests",
"test": "tap -J tests/*.js",
"posttest": "rm tests/*.js tests/*.js.map",
"test:cov": "yarn test -- --cov",
"coffee": "coffee",
"dev": "coffee --watch --compile tests & coffee --watch --compile src"
},
"repository": {
"type": "git",
"url": "https://github.com/geejs/gulp-tap"
},
"keywords": [
"tap",
"gulp",
"stream"
],
"authors": [
"Mario Gutierrez <[email protected]>",
"Rubén Salvador García San Juan <[email protected]>",
"Jon Ege Ronnenberg <[email protected]>",
"Javey <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/geejs/gulp-tap/issues"
},
"homepage": "https://github.com/geejs/gulp-tap",
"dependencies": {
"through2": "^3.0.1"
},
"devDependencies": {
"coffee-script": "^1.12.4",
"coveralls": "^3.0.5",
"gulp": "^4.0.2",
"tap": "^14.4.1"
}
}