Skip to content

Commit

Permalink
fix: fix package.json files
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Aug 16, 2018
1 parent b6ba01e commit 4f2e56a
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
cache:
directories:
- node_modules
- example/basic-starter/node_modules
- examples/basic-starter/node_modules

notifications:
email:
Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<a name="3.3.0"></a>
# [3.3.0](https:/awslabs/aws-serverless-express/compare/v3.2.0...v3.3.0) (2018-08-16)


### Bug Fixes

* run npm audit fix ([85cbae6](https:/awslabs/aws-serverless-express/commit/85cbae6))


### Features

* add option of specifying resolveMode ([#173](https:/awslabs/aws-serverless-express/issues/173)) ([582b88d](https:/awslabs/aws-serverless-express/commit/582b88d))
54 changes: 27 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 4 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,9 @@
},
"license": "Apache-2.0",
"files": [
"index.js",
"middleware.js"
"src/*"
],
"main": "index.js",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https:/awslabs/aws-serverless-express.git"
Expand Down Expand Up @@ -77,8 +76,7 @@
],
"jest": {
"collectCoverageFrom": [
"index.js",
"middleware.js"
"src/*"
]
},
"devDependencies": {
Expand Down Expand Up @@ -107,7 +105,7 @@
"coverage": "jest --coverage",
"cz": "git-cz",
"release": "semantic-release",
"release-local": "node -r dotenv/config node_modules/semantic-release/bin/semantic-release --no-ci",
"release-local": "node -r dotenv/config node_modules/semantic-release/bin/semantic-release --no-ci --dry-run",
"check-dependencies": "npx npm-check --skip-unused --update",
"lint": "eslint src examples",
"install-example-dependencies": "cd examples && npm install --prefix basic-starter basic-starter && cd .."
Expand Down

0 comments on commit 4f2e56a

Please sign in to comment.