Skip to content

Commit

Permalink
Use ~ instead of ^ in dependencies
Browse files Browse the repository at this point in the history
may be needed by some really old npm versions

Resolves #435

(package version 1.16.1)
  • Loading branch information
Christopher J. Brody committed Sep 4, 2018
1 parent a368525 commit 673da3a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -246,6 +246,7 @@ to update this with your PR.
changelog
---------

* `1.16.1` Use `~` instead of `^` in `dependencies` (may be needed by some really old npm versions)
* `1.16.0` Fix `dependencies` to prevent major package updates
* `1.15.0` Switch to coffeescript package
* `1.14.6` Update dependencies to resolve `npm audit` issues
Expand Down
8 changes: 4 additions & 4 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "jasmine-node",
"version": "1.16.0",
"version": "1.16.1",
"description": "DOM-less simple JavaScript BDD testing framework for Node",
"contributors": [
"Martin Häger <martin.haeger@gmail.com>",
Expand All @@ -24,13 +24,13 @@
],
"license": "MIT",
"dependencies": {
"coffeescript": "^1.0.1",
"coffeescript": "~1.12.7",
"gaze": "~1.1.2",
"jasmine-growl-reporter": "~1.0.1",
"jasmine-reporters": "~1.0.0",
"mkdirp": "~0.3.5",
"requirejs": "^2.3.6",
"underscore": "^1.9.1",
"requirejs": "~2.3.6",
"underscore": "~1.9.1",
"walkdir": "~0.0.12"
},
"bin": "bin/jasmine-node",
Expand Down

0 comments on commit 673da3a

Please sign in to comment.