diff options
author | Artur <artur@vaadin.com> | 2018-01-22 12:57:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-01-22 12:57:42 +0200 |
commit | e2dc6db70c245cfb7aafcc5e19cf904305394a4d (patch) | |
tree | 2670330c10e6654121bfc9a306f7ee57e492d164 | |
parent | 6690fe8fbc34130a351aeac7b8434eb0ea226748 (diff) | |
download | vaadin-e2dc6db70c245cfb7aafcc5e19cf904305394a4d.tar.gz vaadin-e2dc6db70c245cfb7aafcc5e19cf904305394a4d.zip |
Add simple Travis build to detect dependency conflicts (#6)
-rw-r--r-- | .travis.yml | 17 | ||||
-rw-r--r-- | bower.json | 2 | ||||
-rw-r--r-- | package.json | 20 |
3 files changed, 38 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..b83f9f7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,17 @@ +sudo: false +dist: trusty +language: node_js +node_js: 8.1 + +cache: + directories: + - node_modules + +addons: + firefox: latest + chrome: latest + +install: + - npm install + - bower install + @@ -8,7 +8,7 @@ "main": "", "license": [ "Apache-2.0", - "http://vaadin.com/license/cval" + "https://vaadin.com/license/cval-3.0" ], "ignore": [ "**/.*", diff --git a/package.json b/package.json new file mode 100644 index 0000000..834587e --- /dev/null +++ b/package.json @@ -0,0 +1,20 @@ +{ + "name": "vaadin", + "version": "10.0.0-alpha13", + "description": "Vaadin Elements is an evolving set of open source custom HTML elements, built using Polymer, for building mobile and desktop web applications in modern browsers.", + "author": "Vaadin Ltd", + "license": "(Apache-2.0 OR SEE LICENSE IN https://vaadin.com/license/cval-3.0)", + "dependencies": { + "bower": "latest" + }, + "devDependencies": {}, + "keywords": [ + "vaadin", + "core", + "elements", + "web", + "components", + "webcomponents", + "web-components" + ] +} |