-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 855 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 855 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
30
31
32
33
34
35
{
"name": "json-stream-compression",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha test",
"cover": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha test",
"lint": "./node_modules/eslint/bin/eslint.js --ignore-pattern node_modules/ --ignore-pattern coverage/ ."
},
"author": "Philip Patzer",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/philip1986/json-stream-compression"
},
"engines" : { "node" : ">= 4" },
"dependencies": {
"cbor": "^3.0.0"
},
"devDependencies": {
"eslint": "^3.11.1",
"eslint-config-google": "^0.7.1",
"istanbul": "^0.4.5",
"mocha": "^3.1.2",
"should": "^11.1.1",
"ws": "^1.1.1"
},
"keywords": [
"JSON",
"compression",
"stream",
"cbor"
]
}