forked from JoshGlazebrook/smart-buffer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.27 KB
/
package.json
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "smart-buffer",
"version": "3.0.3",
"description": "A smarter Buffer that keeps track of its own read and write positions while growing endlessly.",
"main": "build/smartbuffer.js",
"homepage": "https://github.com/JoshGlazebrook/smart-buffer/",
"repository": {
"type": "git",
"url": "https://github.com/JoshGlazebrook/smart-buffer.git"
},
"bugs": {
"url": "https://github.com/JoshGlazebrook/smart-buffer/issues"
},
"keywords": [
"buffer",
"smart",
"packet",
"serialize",
"network",
"cursor",
"simple"
],
"engines": {
"node": ">= 4.0.0",
"npm": ">= 3.0.0"
},
"author": "Josh Glazebrook",
"license": "MIT",
"readmeFilename": "README.md",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"istanbul": "^0.4.3",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0"
},
"typings": "typings/index",
"dependencies": {
"@types/node": "^7.0.4"
},
"scripts": {
"test": "mocha test/smartbuffer.test.js",
"coverage": "istanbul cover node_modules/mocha/bin/_mocha recursive test",
"fullcoverage": "node_modules/.bin/istanbul -include-all-sources cover node_modules/mocha/bin/_mocha recursive test",
"prepublish": "npm install -g typescript && tsc -p ./"
}
}