Skip to content

Commit

Permalink
Update .travis.yml, use standard, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
fanatid committed Nov 19, 2015
1 parent 652cb66 commit cfa0287
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 50 deletions.
9 changes: 0 additions & 9 deletions .eslintrc

This file was deleted.

22 changes: 14 additions & 8 deletions .travis.yml
@@ -1,19 +1,25 @@
sudo: false
language: node_js
node_js:
- "0.10"
- "0.12"
- "4"
- "5"
before_script:
- cp test/config/bitcoind.json.travis test/config/bitcoind.json
- mkdir -p ~/.bitcoin
- cp test/config/bitcoin.conf.travis ~/.bitcoin/bitcoin.conf
- wget https://bitcoin.org/bin/bitcoin-core-0.11.0/bitcoin-0.11.0-linux64.tar.gz
- tar -xf bitcoin-0.11.0-linux64.tar.gz
- ./bitcoin-0.11.0/bin/bitcoind -testnet -server -daemon
- wget https://bitcoin.org/bin/bitcoin-core-0.11.2/bitcoin-0.11.2-linux64.tar.gz
- tar -xf bitcoin-0.11.2-linux64.tar.gz
- ./bitcoin-0.11.2/bin/bitcoind -testnet -server -daemon
- sleep 15
install:
- npm install
env:
- TEST_SUITE=coveralls
- TEST_SUITE=lint
script: "npm run $TEST_SUITE"
matrix:
- TEST_SUITE=test
matrix:
include:
- node_js: "4"
env: TEST_SUITE=coveralls
- node_js: "4"
env: TEST_SUITE=lint
script: npm run $TEST_SUITE
20 changes: 0 additions & 20 deletions LICENSE

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
@@ -1,10 +1,10 @@
# bitcoind-rpc-client

[![NPM Package](https://img.shields.io/npm/v/bitcoind-rpc-client.svg?style=flat-square)](https://www.npmjs.org/package/bitcoind-rpc-client)
[![build status](https://img.shields.io/travis/fanatid/bitcoind-rpc-client.svg?branch=master&style=flat-square)](http://travis-ci.org/fanatid/bitcoind-rpc-client)
[![Coverage Status](https://img.shields.io/coveralls/fanatid/bitcoind-rpc-client.svg?style=flat-square)](https://coveralls.io/r/fanatid/bitcoind-rpc-client)
[![Dependency status](https://img.shields.io/david/fanatid/bitcoind-rpc-client.svg?style=flat-square)](https://david-dm.org/fanatid/bitcoind-rpc-client#info=dependencies)

[![NPM](https://nodei.co/npm/bitcoind-rpc-client.png)](https://www.npmjs.com/package/bitcoind-rpc-client)
[![js-standard-style](https://cdn.rawgit.com/feross/standard/master/badge.svg)](https://github.com/feross/standard)

Bitcoind RPC client with blackjack and hookers.
Expand Down
29 changes: 17 additions & 12 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "bitcoind-rpc-client",
"version": "0.3.0",
"version": "0.3.1",
"description": "Bitcoind RPC client",
"keywords": [
"bitcoin",
Expand All @@ -11,14 +11,10 @@
"url": "https://github.com/fanatid/bitcoind-rpc-client/issues"
},
"license": "MIT",
"author": {
"name": "Kirill Fomichev",
"email": "fanatid@ya.ru"
},
"author": "Kirill Fomichev <fanatid@ya.ru>",
"files": [
"lib",
"src",
"LICENSE",
"README.md"
],
"main": "./lib/index.js",
Expand All @@ -33,23 +29,32 @@
"compile:watch": "mkdir -p lib && babel src -d lib -w",
"coverage": "istanbul cover _mocha -- --compilers js:babel/register test/*.js",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "eslint src test",
"lint": "standard",
"test": "istanbul test mocha -- --compilers js:babel/register --reporter spec test/*.js"
},
"dependencies": {
"babel-runtime": "^5.8.20",
"make-concurrent": "^1.1.0",
"make-concurrent": "^1.2.0",
"promise-useful-utils": "^0.2.0"
},
"devDependencies": {
"babel": "^5.8.23",
"babel-eslint": "^4.1.1",
"chai": "^3.2.0",
"coveralls": "^2.11.4",
"eslint": "^1.4.0",
"eslint-config-standard": "^4.3.2",
"eslint-plugin-standard": "^1.3.0",
"istanbul": "^0.3.19",
"mocha": "^2.3.2"
"mocha": "^2.3.2",
"standard": "^5.4.1"
},
"engines": {
"node": ">=0.10"
},
"standard": {
"globals": [
"describe",
"beforeEach",
"it"
],
"parser": "babel-eslint"
}
}

0 comments on commit cfa0287

Please sign in to comment.