Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #92

Merged
merged 2 commits into from
Jan 31, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 15 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,23 +36,23 @@
],
"devDependencies": {
"@types/node": "^10.0.6",
"eslint": "4.19.1",
"eslint-plugin-prettier": "2.6.0",
"husky": "0.14.3",
"lint-staged": "7.1.0",
"nyc": "11.7.3",
"painless": "0.9.5",
"prettier": "1.12.1",
"typescript": "2.8.3",
"typescript-definition-tester": "0.0.6"
"eslint": "^5.12.1",
"eslint-plugin-prettier": "^3.0.1",
"husky": "1.3.1",
"lint-staged": "^8.1.1",
"nyc": "^13.1.0",
"painless": "^0.9.5",
"prettier": "^1.12.1",
"typescript": "^3.2.4",
"typescript-definition-tester": "^0.0.6"
},
"author": "Aaron Franks",
"license": "MIT",
"dependencies": {
"chalk": "2.4.1",
"dotenv": "4.0.0",
"meant": "1.0.1",
"validator": "9.4.1"
"chalk": "^2.4.1",
"dotenv": "^6.2.0",
"meant": "^1.0.1",
"validator": "^10.11.0"
},
"lint-staged": {
"*.js": [
Expand All @@ -63,5 +63,6 @@
"npm run prettier-ts -- --write",
"git add"
]
}
},
"prettier": {}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

People may have their editor configured with default prettier settings. Explicitly setting an empty config ensures that the default settings are used instead of those set by the user.

}
Loading