forked from nodef/extra-bigint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.09 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
{
"name": "extra-bigint",
"version": "1.1.5",
"description": "A BigInt can represent whole numbers larger than 2⁵³ - 1.",
"sideEffects": false,
"main": "index.js",
"module": "index.mjs",
"exports": {
"require": "./index.js",
"import": "./index.mjs"
},
"scripts": {
"test": "jest",
"build": "node ./build",
"publish-docs": "node ./build publish-docs",
"publish-packages": "node ./build publish-packages"
},
"keywords": [
"extra",
"bigint",
"big",
"integer"
],
"author": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nodef/extra-bigint.git"
},
"bugs": {
"url": "https://github.com/nodef/extra-bigint/issues"
},
"homepage": "https://github.com/nodef/extra-bigint#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/jest": "^29.5.6",
"extra-build": "^2.2.43",
"jest": "^29.7.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^6.1.0",
"ts-jest": "^29.1.1"
}
}