-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 909 Bytes
/
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
{
"name": "mpzjs",
"version": "0.7.1",
"description": "Arbitrary-precision integer arithmetic using libgmp",
"type": "commonjs",
"main": "./lib/index.js",
"exports": {
"require": "./lib/index.js",
"import": "./lib/wrapper.mjs"
},
"engines": {
"node": ">=14.0"
},
"license": "(MIT OR LGPL-3.0-or-later)",
"repository": {
"type": "git",
"url": "https://github.com/anfilat/mpzjs.git"
},
"keywords": [
"gmp",
"libgmp",
"big",
"bignum",
"bigint",
"integer",
"arithmetic",
"precision"
],
"author": "Andrey Filatkin <anfilat@mail.ru>",
"contributors": [
"James Halliday <mail@substack.net>"
],
"scripts": {
"install": "node-gyp-build",
"test": "jest"
},
"dependencies": {
"node-addon-api": "^3.0.0",
"node-gyp-build": "^4.2.0"
},
"devDependencies": {
"jest": "^26.0.0",
"put": "~0.0.6"
}
}