First attempt at Travis CI testing
authorDan Vanderkam <danvdk@gmail.com>
Sat, 14 Jun 2014 02:01:51 +0000 (22:01 -0400)
committerDan Vanderkam <danvdk@gmail.com>
Sat, 14 Jun 2014 02:01:51 +0000 (22:01 -0400)
.gitignore
.travis.yml [new file with mode: 0644]
package.json [new file with mode: 0644]

index 159ec89..e921763 100644 (file)
@@ -1,2 +1,3 @@
 jsdoc
 docs/options.html
+node_modules
diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..6e5919d
--- /dev/null
@@ -0,0 +1,3 @@
+language: node_js
+node_js:
+  - "0.10"
diff --git a/package.json b/package.json
new file mode 100644 (file)
index 0000000..e62960c
--- /dev/null
@@ -0,0 +1,37 @@
+{
+  "name": "dygraphs",
+  "version": "1.0.1",
+  "description": "dygraphs is a fast, flexible open source JavaScript charting library.",
+  "main": "dygraph.js",
+  "directories": {
+    "doc": "docs",
+    "test": "tests"
+  },
+  "scripts": {
+    "test": "make test"
+  },
+  "repository": {
+    "type": "git",
+    "url": "git://github.com/danvk/dygraphs.git"
+  },
+  "keywords": [
+    "dygraphs",
+    "javascript",
+    "visualization",
+    "canvas",
+    "chart",
+    "timeseries"
+  ],
+  "author": "Dan Vanderkam (danvdk@gmail.com)",
+  "license": "MIT",
+  "bugs": {
+    "url": "https://github.com/danvk/dygraphs/issues"
+  },
+  "homepage": "https://github.com/danvk/dygraphs",
+  "devDependencies": {
+    "phantomjs": "^1.9.7-8"
+  },
+  "scripts": {
+    "test": "make test"
+  }
+}