Skip to content

Commit 1d72596

Browse files
committed
update libraries && add travis build
1 parent 349262c commit 1d72596

File tree

3 files changed

+14
-1
lines changed

3 files changed

+14
-1
lines changed

.travis.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: node_js
2+
3+
node_js:
4+
- stable
5+
6+
install:
7+
- npm install
8+
9+
script:
10+
- npm test

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# CSV to Matrix
22

3+
[![Build Status](https://travis-ci.org/javascript-machine-learning/csv-to-array-matrix.svg?branch=master)](https://travis-ci.org/javascript-machine-learning/csv-to-array-matrix)
4+
35
A simple CVS to Matrix parser - reads a CSV file, outputs an arrays in array (Matrix).
46

57
## Installation

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
},
1414
"scripts": {
1515
"compile": "babel --presets es2015,stage-2 -d lib/ src/",
16-
"prepublish": "npm run compile"
16+
"prepublish": "npm run compile",
17+
"test": "echo \"No test specified\" && exit 0"
1718
},
1819
"repository": {
1920
"type": "git",

0 commit comments

Comments
 (0)