diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2016-06-09 00:08:50 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2016-06-09 00:08:50 +0200 |
commit | 4a8985f56a3622a8d0bd5ca545e18510d3f4821d (patch) | |
tree | 7249a7fb1195b5b70d2ebfe1beb1b962361fb250 | |
parent | 2b5d7243bdfe8dbe00b5ba1c4c3cc2a749a8dd80 (diff) | |
download | jquery-4a8985f56a3622a8d0bd5ca545e18510d3f4821d.tar.gz jquery-4a8985f56a3622a8d0bd5ca545e18510d3f4821d.zip |
Build: Fix the order of devDependencies in package.json
`npm install package@version --save` sorts the dependencies alphabetically
so the next such run would fix the order anyway; it's better to not mix
concerns, though, so it's done now in a separate commit.
-rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index fe73d91d3..ab044701a 100644 --- a/package.json +++ b/package.json @@ -41,8 +41,8 @@ "gzip-js": "0.3.2", "jsdom": "5.6.1", "load-grunt-tasks": "1.0.0", - "qunitjs": "1.17.1", "qunit-assert-step": "1.0.3", + "qunitjs": "1.17.1", "requirejs": "2.1.17", "sinon": "1.10.3", "sizzle": "2.2.1", |