This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from deathcap/int64
Use node-int64 for 64-bit long integers. Closes GH-1
- Loading branch information
Showing
3 changed files
with
43 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,32 @@ | ||
{ | ||
"name": "nbt", | ||
"version": "v0.3.0", | ||
"description": "A parser for NBT archives", | ||
"keywords": ["nbt", "minecraft"], | ||
"homepage": "https://github.com/sjmulder/nbt-js", | ||
"author": "Sijmen Mulder <sjmulder@gmail.com>", | ||
"main": "nbt", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/sjmulder/nbt-js.git" | ||
}, | ||
"engines": [ | ||
"node >=0.10" | ||
], | ||
"devDependencies": { | ||
"grunt": "~0.4.4", | ||
"grunt-cli": "~0.1.13", | ||
"grunt-jasmine-node": "~0.2.1", | ||
"grunt-contrib-jshint": "~0.9.2", | ||
"grunt-contrib-watch": "~0.6.0" | ||
}, | ||
"scripts": { | ||
"test": "grunt test" | ||
} | ||
"name": "nbt", | ||
"version": "v0.3.0", | ||
"description": "A parser for NBT archives", | ||
"keywords": [ | ||
"nbt", | ||
"minecraft" | ||
], | ||
"homepage": "https://github.com/sjmulder/nbt-js", | ||
"author": "Sijmen Mulder <sjmulder@gmail.com>", | ||
"main": "nbt", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/sjmulder/nbt-js.git" | ||
}, | ||
"engines": [ | ||
"node >=0.10" | ||
], | ||
"devDependencies": { | ||
"grunt": "~0.4.4", | ||
"grunt-cli": "~0.1.13", | ||
"grunt-jasmine-node": "~0.2.1", | ||
"grunt-contrib-jshint": "~0.9.2", | ||
"grunt-contrib-watch": "~0.6.0" | ||
}, | ||
"scripts": { | ||
"test": "grunt test" | ||
}, | ||
"dependencies": { | ||
"node-int64": "^0.3.1" | ||
} | ||
} |