diff --git a/LICENSE b/LICENSE index d8731b6..93cf2ea 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2014-2015 Athan Reines. +Copyright (c) 2014-2015 The Compute.io Authors. All rights reserved. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/Makefile b/Makefile index 8f4ec98..3234fbb 100644 --- a/Makefile +++ b/Makefile @@ -5,6 +5,14 @@ # Set the node.js environment to test: NODE_ENV ?= test +# Kernel name: +KERNEL ?= $(shell uname -s) + +ifeq ($(KERNEL), Darwin) + OPEN ?= open +else + OPEN ?= xdg-open +endif # NOTES # @@ -98,8 +106,7 @@ test-istanbul-mocha: node_modules view-cov: view-istanbul-report view-istanbul-report: - open $(ISTANBUL_HTML_REPORT_PATH) - + $(OPEN) $(ISTANBUL_HTML_REPORT_PATH) # LINT # diff --git a/README.md b/README.md index e9d52eb..09a7b67 100644 --- a/README.md +++ b/README.md @@ -127,7 +127,8 @@ $ make view-cov ## Copyright -Copyright © 2014-2015. Athan Reines. +Copyright © 2014-2015. The Compute.io Authors. + [npm-image]: http://img.shields.io/npm/v/compute-incrmsum.svg diff --git a/package.json b/package.json index 8f4c58c..eff267b 100644 --- a/package.json +++ b/package.json @@ -55,10 +55,5 @@ "jshint": "2.x.x", "jshint-stylish": "^1.0.0" }, - "licenses": [ - { - "type": "MIT", - "url": "http://www.opensource.org/licenses/MIT" - } - ] + "license": "MIT" }