Skip to content

Commit

Permalink
Update dependencies (#92)
Browse files Browse the repository at this point in the history
* Update dependencies
* Update husky config to new format, see: https://github.com/typicode/husky#upgrading-from-014
  • Loading branch information
DylanVann authored and af committed Jan 31, 2019
1 parent 6f44bb3 commit f76bde6
Show file tree
Hide file tree
Showing 2 changed files with 3,135 additions and 16 deletions.
37 changes: 21 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,7 @@
"lint-ts": "npm run prettier-ts -- --list-different",
"test": "painless -r spec tests/*.js",
"prettier-ts": "prettier 'src/**/*.d.ts' --tab-width 4 --print-width 100 --single-quote --no-semi",
"coverage": "nyc npm test",
"precommit": "lint-staged",
"prepush": "npm run lint && npm run lint-ts && npm test"
"coverage": "nyc npm test"
},
"repository": {
"type": "git",
Expand All @@ -36,23 +34,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 +61,12 @@
"npm run prettier-ts -- --write",
"git add"
]
},
"prettier": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm run lint && npm run lint-ts && npm test"
}
}
}
Loading

0 comments on commit f76bde6

Please sign in to comment.