Use strict versions in NPM versioning (#132)

It'll reduce surprise version changes
This commit is contained in:
gbrodman 2019-06-25 16:10:04 -04:00 committed by GitHub
parent b7f3154f4e
commit 16b0c420a2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 8 deletions

8
package-lock.json generated
View file

@ -2278,9 +2278,9 @@
"dev": true
},
"process-nextick-args": {
"version": "2.0.0",
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz",
"integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==",
"version": "2.0.1",
"resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz",
"integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==",
"dev": true
},
"progress": {
@ -2376,7 +2376,7 @@
"core-util-is": "1.0.2",
"inherits": "2.0.3",
"isarray": "1.0.0",
"process-nextick-args": "2.0.0",
"process-nextick-args": "2.0.1",
"safe-buffer": "5.1.2",
"string_decoder": "1.1.1",
"util-deprecate": "1.0.2"

View file

@ -20,11 +20,11 @@
"google-closure-library": "20190325.0.0"
},
"devDependencies": {
"jasmine-core": "^3.4.0",
"jasmine-core": "3.4.0",
"karma": "3.0.0",
"karma-chrome-launcher": "^2.2.0",
"karma-closure": "^0.1.3",
"karma-jasmine": "^2.0.1",
"karma-chrome-launcher": "2.2.0",
"karma-closure": "0.1.3",
"karma-jasmine": "2.0.1",
"puppeteer": "1.17.0"
}
}