-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.82 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "msgpuck",
"version": "0.8.0",
"description": "A fast and memory-efficient MessagePack serialization library",
"keywords": [
"messagepack",
"msgpack",
"binary",
"serialization",
"typescript",
"browser"
],
"license": "MIT",
"author": "Alex Masterov <alex.masterow@gmail.com>",
"repository": "AlexMasterov/msgpuck.js",
"homepage": "https://github.com/AlexMasterov/msgpuck.js#readme",
"bugs": {
"url": "https://github.com/AlexMasterov/msgpuck.js/issues"
},
"main": "./index.js",
"browser": {
"./index.js": "./dist/latest/browser/index.js",
"./errors/index.js": "./dist/latest/browser/errors/index.js",
"./handlers/index.js": "./dist/latest/browser/handlers/index.js",
"./codecs/index.js": "./dist/latest/browser/codecs/index.js",
"./codecs/long/index.js": "./dist/latest/browser/codecs/long/index.js"
},
"unpkg": "./dist/latest/umd/msgpuck.min.js",
"types": "./index.d.ts",
"files": [
"dist/",
"./index.js",
"./index.d.ts",
"LICENSE"
],
"engines": {
"node": ">=7.0.0"
},
"scripts": {
"build": "node rollup/builds/all",
"test": "nyc mocha --timeout 0 test/*.test.js",
"test:report": "nyc --reporter=html --reporter=text mocha test/*.test.js",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"sideEffects": false,
"dependencies": {
"ascii-chr": "0.4.2",
"utf8-bin": "0.4.0"
},
"devDependencies": {
"coveralls": "3.0.3",
"fs-extra": "7.0.1",
"mocha": "6.0.2",
"nyc": "13.3.0",
"rollup": "1.9.0",
"rollup-plugin-cjs-es": "0.7.0",
"rollup-plugin-node-resolve": "4.2.1",
"rollup-plugin-terser": "4.0.4"
},
"nyc": {
"all": false,
"cache": true,
"sourceMap": true,
"instrument": true,
"reporter": [],
"include": [
"src/**/*.js"
]
}
}