From 39ef61600689227dc41dd95744310aa699f920f7 Mon Sep 17 00:00:00 2001 From: Blaine Bublitz Date: Wed, 18 Jan 2017 13:59:48 -0700 Subject: [PATCH] Scaffold: Normalize project --- .editorconfig | 3 +-- .travis.yml | 4 ++-- LICENSE | 2 +- appveyor.yml | 24 +++++++++++------------- package.json | 13 +++++++++---- 5 files changed, 24 insertions(+), 22 deletions(-) diff --git a/.editorconfig b/.editorconfig index 5d12634..5760be5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -1,10 +1,9 @@ -# editorconfig.org +# http://editorconfig.org root = true [*] indent_style = space indent_size = 2 -end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true diff --git a/.travis.yml b/.travis.yml index 31a0812..c3d25e6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ -sudo: false language: node_js node_js: - - 'stable' + - '6' + - '5' - '4' - '0.12' - '0.10' diff --git a/LICENSE b/LICENSE index 9aedc0d..67fa13b 100755 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2015 Blaine Bublitz, Eric Schoffstall and other contributors +Copyright (c) 2015-2017 Blaine Bublitz , Eric Schoffstall and other contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/appveyor.yml b/appveyor.yml index 05ff977..625fc10 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,27 +1,25 @@ -# Test against these versions of Node.js +# http://www.appveyor.com/docs/appveyor-yml +# http://www.appveyor.com/docs/lang/nodejs-iojs + environment: matrix: # node.js - - nodejs_version: "6.0" - - nodejs_version: "5.0" - - nodejs_version: "4.0" - - nodejs_version: "0.12" - nodejs_version: "0.10" + - nodejs_version: "0.12" + - nodejs_version: "4" + - nodejs_version: "5" + - nodejs_version: "6" -# Install scripts. (runs after repo cloning) install: - # Get the latest stable version of Node.js or io.js - ps: Install-Product node $env:nodejs_version - # install modules - npm install -# Post-install test scripts. test_script: - # Output useful info for debugging. - node --version - npm --version - # run tests - - npm test + - cmd: npm test -# Don't actually build. build: off + +# build version format +version: "{build}" diff --git a/package.json b/package.json index f8b2cda..44a780d 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,10 @@ "version": "5.3.5", "description": "A wrapper around node-glob to make it streamy", "author": "Gulp Team (http://gulpjs.com/)", - "contributors": [], + "contributors": [ + "Eric Schoffstall ", + "Blaine Bublitz " + ], "homepage": "http://gulpjs.com", "repository": "gulpjs/glob-stream", "license": "MIT", @@ -15,10 +18,11 @@ "index.js" ], "scripts": { - "lint": "eslint . && jscs . test/", + "lint": "eslint . && jscs index.js test/", "pretest": "npm run lint", "test": "mocha", - "coveralls": "istanbul cover _mocha --report lcovonly && istanbul-coveralls" + "cover": "istanbul cover _mocha --report lcovonly", + "coveralls": "npm run cover && istanbul-coveralls" }, "dependencies": { "extend": "^3.0.0", @@ -48,6 +52,7 @@ }, "keywords": [ "glob", - "stream" + "stream", + "gulp" ] }