Skip to content

Commit

Permalink
Use caret ranges in package.json, upgrade deps (#312)
Browse files Browse the repository at this point in the history
This makes it so that `yarn upgrade` can upgrade all dependencies.
`yarn upgrade-interactive` can be used for major version bumps.

See the following:
* https://yarnpkg.com/lang/en/docs/dependency-versions/#toc-caret-ranges
* https://yarnpkg.com/docs/cli/upgrade/
* yarnpkg/yarn#1444 (comment)
  • Loading branch information
josephfrazier authored and stefanbuck committed Mar 10, 2017
1 parent 642b4eb commit 4da43a4
Show file tree
Hide file tree
Showing 2 changed files with 387 additions and 402 deletions.
96 changes: 48 additions & 48 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,59 +52,59 @@
]
},
"dependencies": {
"JSONPath": "0.11.2",
"JSONPath": "^0.11.2",
"babel-runtime": "^6.23.0",
"builtins": "1.0.3",
"chrome-promise": "2.0.2",
"builtins": "^1.0.3",
"chrome-promise": "^2.0.2",
"concat-map": "^0.0.1",
"core-js": "2.4.1",
"escape-regex-string": "1.0.4",
"findandreplacedomtext": "0.4.5",
"github-injection": "0.3.0",
"github-url-from-git": "1.5.0",
"github-url-from-username-repo": "1.0.2",
"giturl": "1.0.0",
"jquery": "3.1.1",
"pop-zip": "1.0.0",
"querystring": "0.2.0",
"semver": "5.3.0",
"semver-regex": "1.0.0",
"uuid": "3.0.1",
"xregexp": "3.1.1"
"core-js": "^2.4.1",
"escape-regex-string": "^1.0.4",
"findandreplacedomtext": "^0.4.5",
"github-injection": "^0.3.0",
"github-url-from-git": "^1.5.0",
"github-url-from-username-repo": "^1.0.2",
"giturl": "^1.0.0",
"jquery": "^3.1.1",
"pop-zip": "^1.0.0",
"querystring": "^0.2.0",
"semver": "^5.3.0",
"semver-regex": "^1.0.0",
"uuid": "^3.0.1",
"xregexp": "^3.1.1"
},
"devDependencies": {
"babel-core": "6.22.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.10",
"babel-plugin-transform-object-rest-spread": "6.22.0",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.10",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "1.1.10",
"chrome-launch": "1.1.4",
"chrome-webstore-upload-cli": "1.1.1",
"copy-webpack-plugin": "4.0.1",
"eslint": "3.14.1",
"eslint-config-airbnb-base": "11.0.1",
"eslint-plugin-import": "2.2.0",
"eslint-plugin-mocha": "4.8.0",
"json": "9.0.4",
"json-loader": "0.5.4",
"karma": "1.4.1",
"karma-chrome-launcher": "2.0.0",
"karma-detect-browsers": "2.2.4",
"karma-firefox-launcher": "1.0.0",
"karma-fixture": "0.2.6",
"karma-html2js-preprocessor": "1.1.0",
"karma-mocha": "1.3.0",
"karma-mocha-reporter": "2.2.2",
"karma-phantomjs-launcher": "1.0.2",
"karma-sourcemap-loader": "0.3.7",
"karma-webpack": "2.0.2",
"mkdirp": "0.5.1",
"mocha": "3.2.0",
"npm-run-all": "4.0.1",
"sinon": "2.0.0-pre.4",
"web-ext": "1.7.0",
"webpack": "2.2.1"
"babel-preset-env": "^1.1.10",
"chrome-launch": "^1.1.4",
"chrome-webstore-upload-cli": "^1.1.1",
"copy-webpack-plugin": "^4.0.1",
"eslint": "^3.14.1",
"eslint-config-airbnb-base": "^11.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.8.0",
"json": "^9.0.4",
"json-loader": "^0.5.4",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.0.0",
"karma-detect-browsers": "^2.2.4",
"karma-firefox-launcher": "^1.0.0",
"karma-fixture": "^0.2.6",
"karma-html2js-preprocessor": "^1.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"npm-run-all": "^4.0.1",
"sinon": "^2.0.0-pre.4",
"web-ext": "^1.7.0",
"webpack": "^2.2.1"
},
"optionalDependencies": {
"fsevents": "*"
Expand Down
Loading

0 comments on commit 4da43a4

Please sign in to comment.