-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.29 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
{
"name": "@consento/bigint-codec",
"version": "2.0.2",
"description": "codecs compatible de-/encoder for bigints.",
"main": "index.js",
"type": "commonjs",
"exports": {
".": "./index.js",
"./bigint-be": "./bigint-be.js",
"./bigint-le": "./bigint-le.js",
"./bigint-quick": "./bigint-quick.js",
"./biguint-be": "./biguint-be.js",
"./biguint-le": "./biguint-le.js",
"./lib": "./lib.js"
},
"scripts": {
"test": "npm run lint && npm run cover",
"lint": "standard",
"unit": "fresh-tape test/*.js",
"cover": "c8 npm run unit"
},
"keywords": [
"binary",
"bigint",
"bigint-le",
"bigint-be",
"biguint-le",
"biguint-be",
"big uint",
"big int",
"big integer",
"rust-compatible",
"big endian",
"little endian",
"endianess",
"uint8array",
"buffer",
"codec"
],
"devDependencies": {
"c8": "^7.4.0",
"fresh-tape": "^5.0.4",
"standard": "^16.0.3"
},
"author": "Martin Heidegger <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/consento-org/bigint-codec.git"
},
"bugs": {
"url": "https://github.com/consento-org/bigint-codec/issues"
},
"homepage": "https://github.com/consento-org/bigint-codec#readme"
}