Skip to content

Commit

Permalink
Merge pull request #26 from inversify/dependencies
Browse files Browse the repository at this point in the history
Upgraded dependencies
  • Loading branch information
remojansen authored Nov 4, 2017
2 parents 0aa3ff7 + 0dbd107 commit deaf9d2
Show file tree
Hide file tree
Showing 6 changed files with 36 additions and 26 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,5 @@ test/**/*.js
type_definitions/**/*.js
type_definitions/*.js

.typingsrc
.typingsrc
package-lock.json
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ wallaby.js
.gitignore
.vscode
type_definitions
package-lock.json
7 changes: 2 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
language: node_js
node_js:
- stable
- 5.4.1
- 5.4.0
- 5.3.0
- 5.2.0
- 5.1.1
- 8.8.1
- 7.10.1
before_install:
- npm install -g codeclimate-test-reporter
after_success:
Expand Down
15 changes: 13 additions & 2 deletions PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,31 +1,42 @@
# PR Details

<!--- Provide a general summary of your changes in the Title above -->

## Description

<!--- Describe your changes in detail -->

## Related Issue

<!--- This project only accepts pull requests related to open issues -->
<!--- If suggesting a new feature or change, please discuss it in an issue first -->
<!--- If fixing a bug, there should be an issue describing it with steps to reproduce -->
<!--- Please link to the issue here: -->

## Motivation and Context

<!--- Why is this change required? What problem does it solve? -->

## How Has This Been Tested?
## How Has This Been Tested

<!--- Please describe in detail how you tested your changes. -->
<!--- Include details of your testing environment, and the tests you ran to -->
<!--- see how your change affects other areas of the code, etc. -->

## Types of changes

<!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: -->

- [ ] Docs change / refactoring / dependency upgrade
- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to change)

## Checklist:
## Checklist

<!--- Go over all the following points, and put an `x` in all the boxes that apply. -->
<!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! -->

- [ ] My code follows the code style of this project.
- [ ] My change requires a change to the documentation.
- [ ] I have updated the documentation accordingly.
Expand Down
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "inversify-inject-decorators",
"version": "3.0.1",
"version": "3.0.2",
"description": "Lazy evaluated property injection decorators for InversifyJS",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
Expand Down Expand Up @@ -33,21 +33,21 @@
},
"homepage": "https://github.com/inversify/inversify-inject-decorators#readme",
"devDependencies": {
"@types/chai": "^4.0.1",
"@types/mocha": "^2.2.39",
"@types/sinon": "^2.1.0",
"chai": "^4.0.0",
"gulp": "^3.9.1",
"gulp-istanbul": "^1.0.0",
"gulp-mocha": "^4.0.1",
"gulp-tslint": "^8.0.0",
"gulp-typescript": "^3.0.0",
"inversify": "^4.0.0",
"mocha": "^3.0.2",
"publish-please": "^2.2.0",
"reflect-metadata": "^0.1.3",
"run-sequence": "^2.0.0",
"tslint": "^5.0.0",
"typescript": "^2.1.1"
"@types/chai": "4.0.4",
"@types/mocha": "2.2.44",
"@types/sinon": "2.3.7",
"chai": "4.1.2",
"gulp": "3.9.1",
"gulp-istanbul": "1.1.2",
"gulp-mocha": "3.0.1",
"gulp-tslint": "8.1.2",
"gulp-typescript": "3.2.3",
"inversify": "4.5.1",
"mocha": "4.0.1",
"publish-please": "2.3.1",
"reflect-metadata": "0.1.10",
"run-sequence": "2.2.0",
"tslint": "5.8.0",
"typescript": "2.6.1"
}
}
2 changes: 1 addition & 1 deletion tslint.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"no-switch-case-fall-through": false,
"no-trailing-whitespace": true,
"no-unused-expression": true,
"no-use-before-declare": true,
"no-use-before-declare": false,
"no-var-keyword": true,
"object-literal-sort-keys": true,
"one-line": [true,
Expand Down

0 comments on commit deaf9d2

Please sign in to comment.