diff --git a/README.md b/README.md index d1e600e4..51435d35 100644 --- a/README.md +++ b/README.md @@ -133,6 +133,7 @@ All the features of istanbul can be accessed as a library using its [public API] Changelog --------- +* v0.1.16 : Fix npm keywords for istanbul which expects an array of strings but was being fed a single string with keywords instead * v0.1.15 : Add the 'check-coverage' command so that Istanbul can be used as a posttest script to enforce minimum coverage * v0.1.14 : Expose the experimental YUI load hook in the interface * v0.1.13 : Internal jshint cleanup, no features or fixes diff --git a/package.json b/package.json index f325e793..4fd1613a 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "istanbul", - "version": "0.1.15", + "version": "0.1.16", "description": "Yet another JS code coverage tool that computes statement, line, function and branch coverage with module loader hooks to transparently add coverage when running tests. Supports all JS coverage use cases including unit tests, server side functional tests and browser tests. Built for scale", - "keywords": "coverage,code coverage, JS code coverage, JS coverage", + "keywords": [ "coverage", "code coverage", "JS code coverage", "JS coverage" ], "author": "Krishnan Anantheswaran ", "contributors": [ "Reid Burke ", @@ -14,7 +14,7 @@ "scripts": { "pretest": "jshint --config ./node_modules/yui-lint/jshint.json lib/*js lib/command/*js lib/report/*js lib/store/*js lib/util/*js", "test": "test/run.js", - "posttest": "node ./lib/cli.js check-coverage --statements 95 --branches 80", + "posttest": "node ./lib/cli.js check-coverage --statements 95 --branches 80", "docs": "npm install yuidocjs && node node_modules/yuidocjs/lib/cli.js ." }, "bin": {