]> source.dussan.org Git - vaadin.git/commitdiff
Add simple Travis build to detect dependency conflicts (#6)
authorArtur <artur@vaadin.com>
Mon, 22 Jan 2018 10:57:42 +0000 (12:57 +0200)
committerGitHub <noreply@github.com>
Mon, 22 Jan 2018 10:57:42 +0000 (12:57 +0200)
.travis.yml [new file with mode: 0644]
bower.json
package.json [new file with mode: 0644]

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..b83f9f7
--- /dev/null
@@ -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
+
index b401117af56b4a0582221aae79eb8f37006cbfd2..6c72ae9c2133e400b098de563ec584decdc7d709 100644 (file)
@@ -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 (file)
index 0000000..834587e
--- /dev/null
@@ -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"
+  ]
+}