-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.58 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
{
"name": "gulp-streamify",
"description": "Wrap old plugins to support streams.",
"version": "1.0.2",
"homepage": "https://github.com/nfroidure/gulp-streamify",
"author": {
"name": "Nicolas Froidure",
"url": "http://www.insertafter.com/blog.html"
},
"repository": {
"type": "git",
"url": "git://github.com/nfroidure/gulp-streamify.git"
},
"bugs": {
"url": "https://github.com/nfroidure/gulp-streamify/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/nfroidure/gulp-streamify/blob/master/LICENSE"
}
],
"main": "src/index.js",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "mocha tests/*.mocha.js",
"coveralls": "istanbul cover _mocha --report lcovonly -- tests/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"cover": "istanbul cover --report html _mocha -- tests/*.mocha.js -R spec -t 5000",
"trinita": "npm-check-updates -u && npm test && git commit package.json -m \"Dependencies update\" && git push",
"cli": "env NPM_RUN_CLI=1",
"lint": "eslint **/*.js",
"prepublish": "npm test && npm run lint"
},
"keywords": [
"gulpplugin",
"gulp",
"gulp-plugin",
"stream",
"wrapper"
],
"devDependencies": {
"coveralls": "~2.11.4",
"eslint": "^1.3.1",
"eslint-config-simplifield": "^1.1.0",
"gulp-util": "~3.0.6",
"istanbul": "~0.3.19",
"mocha": "~2.3.1",
"mocha-lcov-reporter": "0.0.2",
"sf-lint": "^1.0.2",
"streamtest": "^1.2.1"
},
"dependencies": {
"plexer": "1.0.1"
}
}