-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.24 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": "nimnjs",
"version": "2.2.1",
"description": "Schema aware compression of JS object/JSON data. 60% more compressed than json",
"main": "src/nimn.js",
"scripts": {
"test": "jasmine tests/*test.js",
"bundle": "browserify src/nimn.js -s nimn -o dist/nimn.js",
"coverage": "istanbul cover -x \"tests/*test.js\" jasmine tests/*test.js;",
"coverage:check": "istanbul check-coverage --branch 90 --statement 90"
},
"keywords": [
"nimn",
"nimnjs",
"json",
"compress",
"parse",
"format",
"msgpack"
],
"author": "Amit Gupta (https://github.com/amitguptagwl)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NaturalIntelligence/nimnjs.git"
},
"bugs": {
"url": "https://github.com/NaturalIntelligence/nimnjs/issues"
},
"homepage": "https://solothought.com/nimn/",
"dependencies": {
"nimn-date-parser": "^1.0.0",
"nimn_schema_builder": "^1.1.0"
},
"devDependencies": {
"benchmark": "^2.1.4",
"browserify": "^16.2.3",
"cbor": "^4.1.1",
"istanbul": "^0.4.5",
"jasmine": "^3.3.0",
"jasmine-core": "^2.99.1",
"msgpack": "^1.0.2",
"notepack.io": "^2.1.3",
"pbf": "^3.1.0",
"protocol-buffers": "^4.1.0"
}
}