From 17bcfee8ac214e05b0e608694cb1c092f661f064 Mon Sep 17 00:00:00 2001 From: Dimitri Benin Date: Thu, 7 Feb 2019 13:50:16 +0100 Subject: [PATCH] fixes after review --- .vscode/launch.json | 3 --- LICENSE | 21 +++++++++++++++++++++ README.md | 29 ++++++++++------------------- package.json | 5 +++++ 4 files changed, 36 insertions(+), 22 deletions(-) create mode 100644 LICENSE diff --git a/.vscode/launch.json b/.vscode/launch.json index ed2cc67..0a26398 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -1,7 +1,4 @@ { - // Use IntelliSense to learn about possible attributes. - // Hover to view descriptions of existing attributes. - // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..89e0797 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2014-2019 Georg Tavonius + +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 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 b0cc966..ef4d77f 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Build Status][build-image]][build-url] [![dependencies][deps-image]][deps-url] [![dev-dependencies][dev-deps-image]][dev-deps-url] + # StackTrace-Parser This parser parses a stack trace from any browser or Node.js and returns an array of hashes representing a line. @@ -30,27 +32,16 @@ commit and make the pull request. Or just write an issue, or let's talk. - [Georg Tavonius](https://github.com/calamari) - [James Ide](https://github.com/ide) - [Alexander Kotliarskyi](https://github.com/frantic) +- [Dimitri Benin](https://github.com/BendingBender) ## LICENSE -The MIT License (MIT) - -Copyright (c) 2014-2015 Georg Tavonius - -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 MIT License (MIT)](https://github.com/errwischt/stacktrace-parser/blob/master/LICENSE) -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. +[build-image]: https://img.shields.io/travis/errwischt/stacktrace-parser/master.svg?style=flat-square +[build-url]: https://travis-ci.org/errwischt/stacktrace-parser +[deps-image]: https://img.shields.io/david/errwischt/stacktrace-parser.svg?style=flat-square +[deps-url]: https://david-dm.org/errwischt/stacktrace-parser +[dev-deps-image]: https://img.shields.io/david/dev/errwischt/stacktrace-parser.svg?style=flat-square +[dev-deps-url]: https://david-dm.org/errwischt/stacktrace-parser?type=dev diff --git a/package.json b/package.json index e966f3a..bfecd3f 100644 --- a/package.json +++ b/package.json @@ -19,6 +19,11 @@ "exceptions" ], "version": "0.1.4", + "files": [ + "/dist", + "LICENSE", + "README.md" + ], "dependencies": {}, "devDependencies": { "@babel/core": "^7.2.2",