Skip to content

Commit

Permalink
[UPDATE] LICENSE, Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
Planeshifter committed May 25, 2015
1 parent 6128e10 commit 5dde331
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion 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
Expand Down
11 changes: 9 additions & 2 deletions Makefile
Expand Up @@ -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 #

Expand Down Expand Up @@ -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 #
Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -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
Expand Down
7 changes: 1 addition & 6 deletions package.json
Expand Up @@ -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"
}

0 comments on commit 5dde331

Please sign in to comment.