Skip to content

Commit

Permalink
v1.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Dec 20, 2012
1 parent edff895 commit 1cfe433
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 28 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@

1.2.3 / 2012-12-20
==================

- FreeBSD 64-bit support (Dave Osborne)

1.2.2 / 2012-12-15
==================

Expand Down
59 changes: 31 additions & 28 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,32 +1,35 @@
{ "name": "ffi"
, "version": "1.2.2"
, "authors": [
"Rick Branson"
, "Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)"
]
, "description": "A foreign function interface (FFI) for Node.js"
, "homepage": "http://github.com/rbranson/node-ffi"
, "engines": { "node": ">=0.6.0" }
, "main": "./lib/ffi"
, "dependencies": {
"bindings": "*"
, "debug": "*"
, "ref": "*"
, "ref-struct": "*"
}
, "devDependencies": {
"expect.js": "*"
, "mocha": "*"
, "ref-array": "*"
}
, "scripts": {
{
"name": "ffi",
"version": "1.2.3",
"authors": [
"Rick Branson",
"Nathan Rajlich <nathan@tootallnate.net> (http://tootallnate.net)"
],
"description": "A foreign function interface (FFI) for Node.js",
"homepage": "http://github.com/rbranson/node-ffi",
"engines": {
"node": ">=0.6.0"
},
"main": "./lib/ffi",
"dependencies": {
"bindings": "*",
"debug": "*",
"ref": "*",
"ref-struct": "*"
},
"devDependencies": {
"expect.js": "*",
"mocha": "*",
"ref-array": "*"
},
"scripts": {
"test": "node-gyp rebuild --directory test && mocha -gc --reporter spec"
}
, "repository": {
"type": "git"
, "url": "http://github.com/rbranson/node-ffi.git"
}
, "bugs": {
},
"repository": {
"type": "git",
"url": "http://github.com/rbranson/node-ffi.git"
},
"bugs": {
"url": "http://github.com/rbranson/node-ffi/issues"
}
}

0 comments on commit 1cfe433

Please sign in to comment.