-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.87 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
71
72
73
74
75
76
77
78
79
80
{
"name": "protobuf-varint",
"version": "1.0.0",
"description": "fast, javascript-only, compatible protobuf compatible varint codecs",
"type": "module",
"module": "./lib/index.mjs",
"exports": {
".": {
"import": "./lib/index.mjs",
"types": "./lib/index.d.mts"
},
"./types": {
"import": "./lib/types.mjs",
"types": "./lib/types.d.mts"
},
"./codecs": {
"import": "./lib/codecs.mjs",
"types": "./lib/codecs.d.mts"
},
"./errors": {
"import": "./lib/errors.mjs",
"types": "./lib/errors.d.mts"
},
"./int32": {
"import": "./lib/int32.mjs",
"types": "./lib/int32.d.mts"
},
"./int64": {
"import": "./lib/int64.mjs",
"types": "./lib/int64.d.mts"
},
"./sint32": {
"import": "./lib/sint32.mjs",
"types": "./lib/sint32.d.mts"
},
"./sint64": {
"import": "./lib/sint64.mjs",
"types": "./lib/sint64.d.mts"
},
"./uint32": {
"import": "./lib/uint32.mjs",
"types": "./lib/uint32.d.mts"
},
"./uint64": {
"import": "./lib/uint64.mjs",
"types": "./lib/uint64.d.mts"
}
},
"prettier": {
"semi": false,
"singleQuote": true
},
"scripts": {
"integration": "npm run lint && npm run coverage",
"test": "npm run lint && npm run unit",
"lint": "prettier -c .",
"lint:fix": "prettier -w .",
"unit": "node test/index.mjs",
"coverage": "c8 -r=text -r=html npm run unit"
},
"repository": {
"type": "git",
"url": "git://github.com/martinheidegger/protobuf-varint.git"
},
"keywords": [
"varint",
"protobuf",
"encode",
"decode",
"protocol-buffers"
],
"author": "Martin Heidegger <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.5",
"c8": "^7.11.2",
"longfn": "^1.3.1",
"prettier": "^3.1.1"
}
}