aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArtur <artur@vaadin.com>2018-01-22 12:57:42 +0200
committerGitHub <noreply@github.com>2018-01-22 12:57:42 +0200
commite2dc6db70c245cfb7aafcc5e19cf904305394a4d (patch)
tree2670330c10e6654121bfc9a306f7ee57e492d164
parent6690fe8fbc34130a351aeac7b8434eb0ea226748 (diff)
downloadvaadin-e2dc6db70c245cfb7aafcc5e19cf904305394a4d.tar.gz
vaadin-e2dc6db70c245cfb7aafcc5e19cf904305394a4d.zip
Add simple Travis build to detect dependency conflicts (#6)
-rw-r--r--.travis.yml17
-rw-r--r--bower.json2
-rw-r--r--package.json20
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
+
diff --git a/bower.json b/bower.json
index b401117..6c72ae9 100644
--- a/bower.json
+++ b/bower.json
@@ -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"
+ ]
+}