-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
80 lines (80 loc) · 2.26 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": "gmp-wasm",
"version": "1.3.2",
"description": "Arbitrary-precision Integer, Rational and Float types based on the GMP and MPFR libraries",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build-gmp": "sh -c ./binding/build-gmp.sh",
"build-mpfr": "sh -c ./binding/build-mpfr.sh",
"build-src": "sh -c ./binding/build-src.sh",
"build-wasm-ts": "node scripts/toBase64.js",
"build-bindings": "npm run build-gmp && npm run build-mpfr && npm run build-src && npm run build-wasm-ts",
"build-rollup": "rollup -c",
"build-types": "tsc --project types.tsconfig.json",
"build": "npm run build-bindings && npm run build-rollup && npm run build-types",
"test": "jest --coverage",
"typedoc": "typedoc ./src/index.ts",
"typedoc-serve": "npm run typedoc && npx serve -n docs"
},
"keywords": [
"gmp",
"mpfr",
"wasm",
"arbitrary",
"precision",
"multi",
"multiprecision",
"arithmetic",
"webassembly",
"fast",
"decimal",
"large",
"integer",
"big",
"rational",
"rationals",
"float",
"biginteger",
"bigdecimal",
"bignumber",
"bigint",
"bignum",
"math",
"mathematics"
],
"bugs": {
"url": "https://github.com/Daninet/gmp-wasm/issues"
},
"homepage": "https://github.com/Daninet/gmp-wasm#readme",
"author": "Dani Biró <danibiro93@gmail.com> (https://danibiro.com)",
"license": "LGPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/Daninet/gmp-wasm.git"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.1",
"@rollup/plugin-typescript": "^8.3.2",
"@types/estree": "^0.0.51",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.29",
"binaryen": "^106.0.0",
"fflate": "^0.7.3",
"jest": "^28.0.2",
"rollup": "^2.70.2",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-license": "^2.7.0",
"rollup-plugin-terser": "^7.0.2",
"serve": "^13.0.2",
"ts-jest": "^28.0.0-next.1",
"ts-node": "^10.7.0",
"tslib": "^2.4.0",
"typedoc": "^0.22.15",
"typescript": "^4.6.3"
}
}