Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
calidion committed Nov 14, 2015
1 parent 306e167 commit 2478ec2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
sudo: required
sudo: false
language: node_js
env:
- CXX="g++-4.8"

node_js:
- '5.0'
- '4.2'
- '4.1'
- '4.0'
- '0.12'
Expand All @@ -15,3 +16,6 @@ addons:
packages:
- g++-4.8
- gcc-4.8

script: "npm run-script test-travis"
after_script: "npm install coveralls && cat ./coverage/lcov.info | coveralls"
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "node-weixin-request",
"version": "0.1.1",
"version": "0.2.0",
"description": "Requests for weixin apis",
"author": {
"name": "JSSDKCN",
"name": "node-weixin",
"email": "calidion@gmail.com",
"url": "blog.3gcnbeta.com"
},
"repository": "JSSDKCN/node-weixin-request",
"repository": "node-weixin/node-weixin-request",
"license": "MIT",
"files": [
"index.js"
Expand All @@ -27,12 +27,15 @@
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-cli": "^1.12.0",
"istanbul": "^0.4.0",
"jshint-stylish": "^1.0.1",
"load-grunt-tasks": "^3.1.0",
"mocha": "^2.3.3",
"nock": "^2.10.0",
"time-grunt": "^1.1.0"
},
"scripts": {
"test": "grunt"
"test": "grunt",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
}
}

0 comments on commit 2478ec2

Please sign in to comment.