-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
node_modules | ||
.idea | ||
# Ignore certain IDEA/WebStorm project files | ||
.idea/deployment.xml | ||
.idea/workspace.xml | ||
|
||
# Code coverage reults | ||
coverage/ | ||
|
||
# npm modules | ||
node_modules/ | ||
|
||
# npm error log | ||
npm-debug.log |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,5 +2,3 @@ language: node_js | |
node_js: | ||
- "4" | ||
- "node" | ||
|
||
sudo: false |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
Copyright (c) 2016 Strider Continuous Deployment <[email protected]> | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,6 @@ | ||
{ | ||
"parserOptions": { | ||
"ecmaVersion": 5, | ||
"sourceType": "script" | ||
}, | ||
"env": { | ||
"browser": true, | ||
"commonjs": true, | ||
"es6": true | ||
}, | ||
"globals": { | ||
"app": true | ||
}, | ||
"extends": "eslint:recommended", | ||
"rules": { | ||
"indent": [2, 2], | ||
"brace-style": [2, "1tbs"], | ||
"quotes": [2, "single"], | ||
"no-console": 1, | ||
"no-use-before-define": [2, "nofunc"], | ||
"no-underscore-dangle": 0, | ||
"no-constant-condition": 0, | ||
"space-before-function-paren": [2, {"anonymous": "always", "named": "never"}], | ||
"func-style": [2, "declaration"] | ||
"commonjs": true | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "strider-template", | ||
"version": "1.0.1", | ||
"version": "2.0.0", | ||
"description": "Plugin template for Strider CD", | ||
"main": "webapp.js", | ||
"scripts": { | ||
"lint": "eslint config *.js", | ||
"test": "npm run lint && mocha -R spec --recursive test" | ||
"lint": "eslint *.js config lib", | ||
"test": "npm run lint && istanbul cover node_modules/mocha/bin/_mocha --recursive test" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -16,9 +16,11 @@ | |
"plugin", | ||
"template" | ||
], | ||
"author": "Kyle Newsome <[email protected]>", | ||
"license": "ISC", | ||
"dependencies": {}, | ||
"author": "Strider Continuous Deployment <[email protected]>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"debug": "^2.2.0" | ||
}, | ||
"strider": { | ||
"type": "job", | ||
"id": "template", | ||
|
@@ -32,7 +34,8 @@ | |
}, | ||
"devDependencies": { | ||
"chai": "^3.5.0", | ||
"eslint": "^3.0.1", | ||
"eslint": "^3.1.1", | ||
"istanbul": "^0.4.4", | ||
"mocha": "^2.4.5", | ||
"sinon": "^1.17.3", | ||
"sinon-chai": "^2.8.0" | ||
|