-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1016 Bytes
/
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
{
"name": "chunk2json",
"version": "1.0.9",
"description": "JSON parser that extracts JSON objects out of a byte stream without the use of delimeters",
"main": "index.js",
"keywords": [
"json",
"stream",
"parser",
"buffer",
"chunk",
"tcp",
"readable",
"delimeter",
"extract"
],
"scripts": {
"test": "mocha --reporter spec -t 5000 test/lib/chunk2json.test.js",
"test-on-travis": "./node_modules/.bin/istanbul cover --report lcovonly ./node_modules/.bin/_mocha -- --timeout 5000 --slow 500 test/lib/chunk2json.test.js",
"upload-to-coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"author": "Ioannis Tzanellis <[email protected]> (https://estacadoslair.com)",
"license": "MIT",
"devDependencies": {
"coveralls": "^2.11.9",
"istanbul": "^0.4.3",
"mocha": "^2.4.5",
"split": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/jahnestacado/chunk2json"
}
}