Skip to content

Commit

Permalink
Merge pull request #1 from jasonkarns/npm
Browse files Browse the repository at this point in the history
Npm
  • Loading branch information
jasonkarns committed Jan 30, 2019
2 parents 004e707 + c2c4168 commit d140a65
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 14 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/node_modules
/package-lock.json
/yarn.lock
/bats-support-*.tgz
10 changes: 3 additions & 7 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,3 @@
language: bash
before_install:
- ./script/install-bats.sh
before_script:
- export PATH="${HOME}/.local/bin:${PATH}"
script:
- bats test
language: node_js
node_js: node
cache: npm
27 changes: 26 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
{
"name": "bats-support",
"version": "0.3.0",
"private": true
"description": "Supporting library for Bats test helpers",
"homepage": "https://github.com/jasonkarns/bats-support",
"license": "CC0-1.0",
"author": "Zoltán Tömböl (https://github.com/ztombol)",
"contributors": [
"Jason Karns <jason.karns@gmail.com> (http://jason.karns.name)"
],
"repository": "github:jasonkarns/bats-support",
"bugs": "https://github.com/jasonkarns/bats-support/issues",
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"load.bash",
"src"
],
"scripts": {
"test": "bats ${CI+-t} test"
},
"devDependencies": {
"bats": "^1"
},
"peerDependencies": {
"bats": "0.4 || ^1"
}
}
6 changes: 0 additions & 6 deletions script/install-bats.sh

This file was deleted.

0 comments on commit d140a65

Please sign in to comment.