This repository has been archived by the owner on Feb 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from Springworks/update-dependencies
Update dependencies and use semantic-release
- Loading branch information
Showing
13 changed files
with
89 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,3 @@ reporting: | |
print: summary | ||
reports: | ||
- lcov | ||
- teamcity |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,21 @@ | ||
sudo: false | ||
language: node_js | ||
node_js: | ||
- '4' | ||
script: | ||
- npm run lint | ||
- npm test | ||
after_success: | ||
- npm run coveralls | ||
- '4' | ||
- '6' | ||
notifications: | ||
email: false | ||
slack: | ||
secure: aX0oEq3Wqzkl8z5Z9Z0rYuHC+zCCkynAuip4bErlG5hf6gfScgUrYOv5DfE/pY3kajNBlPGk6aqlrajzJ3J0ZmrRqdI17h4MyG17/bmAmgYK+WQhaIrdxXL/+GW1lECJuxXja/L6IPq7je6lVBlxncmIlp/OqcTVlHDmC2idlQ8lMJskwF//k8hkA8NKBikQzisAaNH3qKCtSGLQyMqYHFD/U07wGfhS55cEUQp/mxYLTaEH85eTAoez/Am7uuvAsqli4TCK5Vj7v0pk5lrbC4+9q2aunlzi66IhR54YOLjMj3nogkaOoYEZNOr5HIq6YfXL33i2H67HvCS4uojZjmfagX/V2A1JHam7BTGqJGpaWHmRBCFSIq85o3myGCsN3lGactQkUpIVGxbRCviLbanfZRiTv8ld60JmAdVNqKgbCw5of2wshQtObN98Xnej9V+8+BNN3kAULlAUd3TMj+4JbNlFf2T5CEktR8qtwUjbxgr4/5RMRWpQgAFdRbnF9wtWr80Z+0sQbhHkI+dBBzKHEze1Z1+0O07EBTlD3H2GBlDD6HcBxZ9G/7kbLZvEnxya65wnAvQ5BT0xw7e9bNxnXCSwpYqEES2SvqYUd0IqadFlZucuiM6HtxzUCRVzphZoUgt4qAODgn7XQKvf6YLx7vEnJkptZUAduraNUj0= | ||
sudo: false | ||
script: | ||
- npm run lint | ||
- npm test | ||
after_success: | ||
- npm run coveralls | ||
- 'curl -Lo travis_after_all.py https://git.io/travis_after_all' | ||
- python travis_after_all.py | ||
- export $(cat .to_export_back) &> /dev/null | ||
- npm run semantic-release | ||
branches: | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/usr/bin/env node | ||
|
||
var record_deployment = require('../lib/cli/record-deployment'); | ||
record_deployment.run(process); | ||
require('../lib/cli/record-deployment').run(process); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
#!/usr/bin/env node | ||
|
||
var deployment_notifier = require('../lib/cli/suggest-deployment'); | ||
deployment_notifier.run(process); | ||
require('../lib/cli/suggest-deployment').run(process); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,62 @@ | ||
{ | ||
"name": "deployment-notifier", | ||
"version": "1.2.4", | ||
"description": "Sends notifications about deployments for a Git repo", | ||
"private": false, | ||
"license": "MIT", | ||
"main": "./lib/index.js", | ||
"scripts": { | ||
"prepublish": "npm run build", | ||
"build": "rm -rf lib && babel src --out-dir lib", | ||
"test": "NODE_ENV=test istanbul cover _mocha", | ||
"lint": "eslint .", | ||
"coveralls": "cat ./coverage/lcov.info | coveralls" | ||
"coveralls": "cat ./coverage/lcov.info | coveralls", | ||
"semantic-release": "semantic-release pre && npm publish && semantic-release post", | ||
"commit": "commit-wizard" | ||
}, | ||
"bin": { | ||
"deployment-suggestion": "./bin/deployment-suggestion.js", | ||
"deployment-completed": "./bin/deployment-completed.js" | ||
}, | ||
"dependencies": { | ||
"@springworks/input-validator": "4.0.12", | ||
"commander": "2.9.0", | ||
"node-slack": "0.0.7", | ||
"request": "2.72.0" | ||
}, | ||
"devDependencies": { | ||
"@springworks/test-harness": "1.3.4", | ||
"babel-cli": "6.8.0", | ||
"babel-core": "6.8.0", | ||
"babel-eslint": "6.0.4", | ||
"babel-plugin-transform-strict-mode": "6.8.0", | ||
"babel-preset-es2015": "6.6.0", | ||
"babel-register": "6.8.0", | ||
"coveralls": "2.11.9", | ||
"eslint": "2.9.0", | ||
"eslint-config-springworks": "7.0.3", | ||
"eslint-plugin-import": "1.7.0", | ||
"eslint-plugin-mocha": "2.2.0", | ||
"eslint-plugin-should-promised": "1.0.8", | ||
"eslint-plugin-springworks": "2.0.1", | ||
"istanbul": "1.0.0-alpha.2", | ||
"mocha": "2.4.5", | ||
"pre-git": "3.8.4", | ||
"semantic-release": "4.3.5" | ||
}, | ||
"config": { | ||
"pre-git": { | ||
"commit-msg": "conventional" | ||
} | ||
}, | ||
"engines": { | ||
"node": ">=4.2.2", | ||
"npm": ">=3.3.12" | ||
"node": ">=4", | ||
"npm": ">=2.7" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git://github.com/Springworks/node-deployment-notifier.git" | ||
"url": "https://github.com/Springworks/node-deployment-notifier.git" | ||
}, | ||
"author": "Springworks", | ||
"bugs": { | ||
"url": "https://github.com/Springworks/node-deployment-notifier/issues" | ||
}, | ||
"dependencies": { | ||
"@springworks/input-validator": "3.1.2", | ||
"commander": "2.9.0", | ||
"node-slack": "0.0.7", | ||
"request": "2.65.0" | ||
}, | ||
"devDependencies": { | ||
"@springworks/test-harness": "1.2.0", | ||
"babel-cli": "6.3.17", | ||
"babel-core": "6.3.17", | ||
"babel-eslint": "4.1.2", | ||
"babel-plugin-transform-strict-mode": "6.3.13", | ||
"babel-preset-es2015": "6.3.13", | ||
"babel-register": "6.3.13", | ||
"coveralls": "2.11.4", | ||
"eslint": "1.5.1", | ||
"eslint-config-springworks": "3.1.1", | ||
"eslint-plugin-mocha": "1.0.0", | ||
"eslint-plugin-should-promised": "1.0.5", | ||
"istanbul": "0.3.21", | ||
"mocha": "2.3.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters