Skip to content

Commit

Permalink
1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
goto-bus-stop committed May 8, 2019
1 parent bb3fe66 commit 8386769
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 14 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# assert change log

All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](http://semver.org/).

## 1.5.0
* Add strict mode APIs. ([@lukechilds](https://github.com/lukechilds) in [#41](https://github.com/browserify/commonjs-assert/pull/41))
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,7 @@
{
"name": "assert",
"description": "The node.js assert module, re-packaged for web browsers.",
"keywords": [
"assert",
"browser"
],
"version": "1.4.1",
"homepage": "https://github.com/browserify/commonjs-assert",
"repository": {
"type": "git",
"url": "git://github.com/browserify/commonjs-assert.git"
},
"main": "./assert.js",
"version": "1.5.0",
"dependencies": {
"object-assign": "^4.1.1",
"util": "0.10.3"
Expand All @@ -21,12 +11,22 @@
"zuul": "~3.10.0",
"zuul-ngrok": "^4.0.0"
},
"homepage": "https://github.com/browserify/commonjs-assert",
"keywords": [
"assert",
"browser"
],
"license": "MIT",
"main": "./assert.js",
"repository": {
"type": "git",
"url": "git://github.com/browserify/commonjs-assert.git"
},
"scripts": {
"test-node": "mocha --ui qunit test.js",
"test-browser": "zuul -- test.js",
"browser-local": "zuul --no-coverage --local 8000 -- test.js",
"test": "npm run test-node && npm run test-browser",
"test-browser": "zuul -- test.js",
"test-native": "TEST_NATIVE=true mocha --ui qunit test.js",
"browser-local": "zuul --no-coverage --local 8000 -- test.js"
"test-node": "mocha --ui qunit test.js"
}
}

0 comments on commit 8386769

Please sign in to comment.