Skip to content

Commit

Permalink
Update package metadata. Add SPDX license.
Browse files Browse the repository at this point in the history
Change version from 0.2.26-pre to 0.2.25.
We will be using `npm version` to bump versions from now on.
The `-pre` suffix will be retired.
  • Loading branch information
reid committed Feb 8, 2014
1 parent 1f1faeb commit 62687b1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 24 deletions.
38 changes: 15 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "yeti",
"description": "Test your JavaScript with any browser.",
"description": "Yeti automates browser testing.",
"author": "Reid Burke <[email protected]> (http://reidburke.com)",
"contributors": [
"Dav Glass <[email protected]>",
Expand All @@ -11,34 +11,27 @@
],
"keywords": [
"YUI",
"web app",
"YUITest",
"yuitest",
"TDD",
"BDD",
"yui3",
"test"
"test",
"mocha",
"doh",
"jasmine",
"qunit"
],
"version": "0.2.26-pre",
"homepage": "htp://yuilibrary.com/projects/yeti",
"version": "0.2.25",
"homepage": "http://yeti.cx",
"repository": {
"type": "git",
"url": "git://github.com/yui/yeti.git"
},
"licenses": [
{
"type": "BSD",
"url": "http://yuilibrary.com/license"
}
],
"bugs": {
"url": "https://github.com/yui/yeti/issues"
"url": "http://github.com/yui/yeti.git"
},
"license": "BSD-3-Clause",
"bugs": "https://github.com/yui/yeti/issues",
"main": "lib/yeti",
"bin": {
"yeti": "./cli.js"
},
"bin": "./cli.js",
"scripts": {
"pretest": "jshint lib test && jake dep",
"pretest": "jake lint && jake dep",
"test": "jake test",
"postinstall": "node scripts/postinstall.js"
},
Expand Down Expand Up @@ -89,6 +82,5 @@
"rimraf": ">=2.0.1",
"walkdir": ">=0.0.5",
"mock-utf8-stream": ">=0.1.0"
},
"optionalDependencies": {}
}
}
2 changes: 1 addition & 1 deletion test/unit/package-metadata.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ vows.describe("Package").addBatch({
assert.ok(meta.homepage);
},
"should return a bug URL" : function (meta) {
assert.ok(meta.bugs.url);
assert.ok(meta.bugs);
},
"should return a version" : function (meta) {
assert.ok(meta.version);
Expand Down

0 comments on commit 62687b1

Please sign in to comment.