forked from kriszyp/msgpackr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.35 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
{
"name": "msgpackr",
"author": "Kris Zyp",
"version": "1.2.0",
"description": "Ultra-fast MessagePack implementation with extensions for records and structured cloning",
"license": "MIT",
"types": "./index.d.ts",
"keywords": [
"MessagePack",
"msgpack",
"performance",
"structured",
"clone"
],
"repository": {
"type": "git",
"url": "http://github.com/kriszyp/msgpackr"
},
"scripts": {
"benchmark": "node ./tests/benchmark.js",
"test": "./node_modules/.bin/mocha tests/test*.js -u tdd"
},
"type": "commonjs",
"module": "./index.mjs",
"main": "./index.js",
"exports": {
".": {
"import": "./index.mjs",
"require": "./index.js"
},
"./pack": {
"node": {
"import": "./index.mjs",
"require": "./index.js"
},
"default": {
"import": "./pack.mjs",
"require": "./pack.js"
}
},
"./unpack": {
"node": {
"import": "./index.mjs",
"require": "./index.js"
},
"default": {
"import": "./unpack.mjs",
"require": "./unpack.js"
}
}
},
"optionalDependencies": {
"msgpackr-extract": "^1.0.5"
},
"devDependencies": {
"@types/node": "latest",
"chai": "^4",
"mocha": "^4",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.2",
"webpack-command": "^0.4.1"
}
}