From 3ca724dd26e5f21df5d065bc332cb91d85186406 Mon Sep 17 00:00:00 2001 From: Richard Littauer Date: Wed, 22 Aug 2018 13:01:23 -0400 Subject: [PATCH 1/3] docs(LICENSE.md): Add ISC license --- LICENSE.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000000..ef8d4a1a7b --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,7 @@ +ISC License + +Copyright (c) 2018 by Remix Team + +Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. + +THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. From 64e5b4473cd8e2a2950b19e60a10af8490d22137 Mon Sep 17 00:00:00 2001 From: Richard Littauer Date: Wed, 22 Aug 2018 13:01:45 -0400 Subject: [PATCH 2/3] docs: Add Description, License, and Contribute sections --- README.md | 9 +++++++++ package.json | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 38ce5db4f7..dcb4ab9ca0 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,8 @@ Remix-Tests --- +> Tests for the Ethereum tool suite [Remix](https://github.com/ethereum/remix) + ### Installation `npm -g install remix-tests` @@ -107,3 +109,10 @@ params: `finalCallback(err)` - called when all tests finish running. `importCb(url, cb)` +## Contribute + +Please feel free! Open an issue or a pull request. Please conform to [`standard`](https://standardjs.com/) for code styles, and make sure that you add any relevant tests. + +## License + +[ISC](LICENSE.md) © 2018 Remix Team diff --git a/package.json b/package.json index 7fa2e106b6..df119242ab 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "remix-tests", "version": "0.0.6", - "description": "", + "description": "Tests for the Ethereum tool suite Remix", "main": "./src/index.js", "contributors": [ { From 4f7bd08a5da831a832e95497606d4c800017405b Mon Sep 17 00:00:00 2001 From: Richard Littauer Date: Wed, 22 Aug 2018 16:10:36 -0400 Subject: [PATCH 3/3] docs: Switch license to MIT --- LICENSE.md | 10 ++++++---- README.md | 2 +- package.json | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index ef8d4a1a7b..27926b8b91 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -1,7 +1,9 @@ -ISC License +MIT License -Copyright (c) 2018 by Remix Team +Copyright (c) 2018 Remix Team -Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: -THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md index dcb4ab9ca0..3a41926ce0 100644 --- a/README.md +++ b/README.md @@ -115,4 +115,4 @@ Please feel free! Open an issue or a pull request. Please conform to [`standard` ## License -[ISC](LICENSE.md) © 2018 Remix Team +[MIT](LICENSE.md) © 2018 Remix Team diff --git a/package.json b/package.json index df119242ab..472085ffe9 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "url": "git+https://github.com/ethereum/remix-tests.git" }, "author": "Remix Team", - "license": "ISC", + "license": "MIT", "bugs": { "url": "https://github.com/ethereum/remix-tests/issues" },