Skip to content

Commit

Permalink
Initial import to GitHub!
Browse files Browse the repository at this point in the history
  • Loading branch information
kfitzgerald committed Nov 8, 2017
0 parents commit b176e05
Show file tree
Hide file tree
Showing 20 changed files with 4,023 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/node_modules/**
/coverage/**
/.nyc_output/**
11 changes: 11 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"env": {
"node": true,
"es6": true
},
"parserOptions": {
"sourceType": "module"
},
"plugins": [
]
}
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
coverage
node_modules
.idea
*.tgz
.nyc_output
5 changes: 5 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
test
*.tgz
coverage
.nyc_output
.idea
8 changes: 8 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
language: node_js
node_js:
- "lts/*"
- "6"
script:
- npm run report
after_script:
- "npm install coveralls@2.10.0 && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
Loading

0 comments on commit b176e05

Please sign in to comment.