Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix installation issues with node v.0.11 and v.0.12 #1

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
language: "node_js"
language: node_js
node_js:
- 0.4
- 0.6
- 0.8
- 0.10
- 0.12
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
## 0.1.1 - 2015-04-01

* Update bignum npm dependency to resolve installation issues with Node v.0.11 and v.0.12
31 changes: 20 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
{
"name": "sysvelf",
"version": "0.1.0",
"version": "0.1.1",
"description": "An Executable and Linkable Format (ELF) parser.",
"keywords": ["elf", "systemv", "unix", "abi"],
"keywords": [
"elf",
"systemv",
"unix",
"abi"
],
"repository": {
"type": "git",
"url": "git://github.com/sifteo/node-elf.git"
Expand All @@ -14,21 +19,25 @@
"name": "Jared Hanson",
"email": "[email protected]"
},
"licenses": [ {
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
} ],
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/MIT"
}
],
"main": "./lib",
"dependencies": {
"endian-buffer": "0.1.x",
"bignum": "0.6.x"
"bignum": "^0.9.2",
"endian-buffer": "0.1.x"
},
"devDependencies": {
"mocha": "1.x.x",
"chai": "1.x.x"
"chai": "^2.2.0",
"mocha": "^2.2.1"
},
"scripts": {
"test": "NODE_PATH=./lib node_modules/.bin/mocha --reporter spec --require test/bootstrap/node test/*.test.js"
},
"engines": { "node": ">= 0.4.0" }
"engines": {
"node": ">= 0.4.0"
}
}