From 9b60fe57c34798da8acffe92a505428710aa3c44 Mon Sep 17 00:00:00 2001 From: "Phyks (Lucas Verney)" Date: Tue, 21 Nov 2017 22:15:50 +0100 Subject: [PATCH] Add license --- LICENSE.md | 21 +++++++++++++++++++++ README.md | 23 ++++++++++------------- package.json | 5 +---- 3 files changed, 32 insertions(+), 17 deletions(-) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..9d64f10 --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,21 @@ +The MIT License (MIT) + +Copyright (c) 2017 Phyks (Lucas Verney) + +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 b57486d..9c54b17 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ -# hungergames +# HungerGames -> OpenFoodFacts gamification +Gamification webapp on top of [OpenFoodFacts](http://openfoodfacts.org/) to +improve quality of the data. -## Build Setup + +## Build setup ``` bash # install dependencies @@ -13,18 +15,13 @@ npm run dev # build for production with minification npm run build +# Then, serve the built files with a webserver # build for production and view the bundle analyzer report npm run build --report - -# run unit tests -npm run unit - -# run e2e tests -npm run e2e - -# run all tests -npm test ``` -For detailed explanation on how things work, checkout the [guide](http://vuejs-templates.github.io/webpack/) and [docs for vue-loader](http://vuejs.github.io/vue-loader). + +## License + +The content of this repository is licensed under an MIT license, unless explicitly mentionned otherwise. diff --git a/package.json b/package.json index f2e1e98..9043a6e 100644 --- a/package.json +++ b/package.json @@ -8,10 +8,7 @@ "dev": "node build/dev-server.js", "start": "node build/dev-server.js", "build": "node build/build.js", - "unit": "cross-env BABEL_ENV=test karma start test/unit/karma.conf.js --single-run", - "e2e": "node test/e2e/runner.js", - "test": "npm run unit && npm run e2e", - "lint": "eslint --ext .js,.vue src test/unit/specs test/e2e/specs" + "lint": "eslint --ext .js,.vue src" }, "dependencies": { "es6-promise": "^4.1.1",