Travis CI 💚

This commit is contained in:
Jannis R 2016-06-28 12:58:31 +02:00
parent d6a78e353c
commit e93d5f6929
3 changed files with 16 additions and 0 deletions

View file

@ -11,3 +11,8 @@ insert_final_newline = true
[**.{coffee,js,json}]
indent_style = tab
indent_size = 4
# Use spaces in YAML.
[**.{yml,yaml}]
indent_style = spaces
indent_size = 2

7
.travis.yml Normal file
View file

@ -0,0 +1,7 @@
sudo: false
language: node_js
node_js:
- 'stable'
- '6'
- '5'
- '4'

View file

@ -14,5 +14,9 @@
"dependencies": {
"got": "^6.3",
"moment-timezone": "^0.5.4"
},
"scripts": {
"test": "node -e \"require('./index')\"",
"prepublish": "npm test"
}
}