-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 747 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 747 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "offset-buffer",
"version": "0.0.1",
"author": "Matan Amir <github-contrib@ematan.com> (http://www.n0tw0rthy.com)",
"description": "Node.js Buffer wrapper that keeps track of your read and write offsets",
"main": "index.js",
"dependencies": {
"int24": "*",
"ref": "*"
},
"devDependencies": {
"tap": "*"
},
"license": {
"type": "MIT",
"url": "https://github.com/matanamir/offset-buffer/raw/master/LICENSE"
},
"repository": {
"type": "git",
"url": "git@github.com:matanamir/offset-buffer.git"
},
"scripts": {
"test": "node test/offset-buffer-test.js"
},
"keywords": [
"offset",
"buffer"
]
}