-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.59 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
{
"name": "bigint-toolkit",
"version": "0.2.0",
"main": "dist/bigint-toolkit.cjs",
"browser": "dist/bigint-toolkit.js",
"module": "dist/bigint-toolkit.es.js",
"typings": "dist/index.d.ts",
"license": "MIT",
"keywords": ["bigint", "math", "conversion", "uint8", "hex", "buffer", "mod", "modpow", "airth"],
"scripts": {
"build:prod": "cross-env NODE_ENV=production rollup -c",
"build": "cross-env NODE_ENV=development rollup -c",
"watch": "cross-env NODE_ENV=development rollup -cw",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"doc": "node generate-docs.js",
"release": "sh ./bin/release.sh"
},
"homepage": "https://github.com/asika32764/bigint-toolkit",
"repository": {
"type": "git",
"url": "git+https://github.com/asika32764/bigint-toolkit.git"
},
"author": {
"name": "Simon Asika",
"email": "asika32764@gmail.com"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.8",
"@types/lodash-es": "^4.17.11",
"@types/micromatch": "^4.0.5",
"cross-env": "^7.0.3",
"esbuild": "^0.19.5",
"glob": "^10.3.10",
"jest": "^29.7.0",
"rollup": "^3.28.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^5.0",
"rollup-plugin-esbuild": "^6.1.0",
"terser": "^5.19.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"tsdoc-markdown": "^0.1.0",
"tslib": "^2.6.2",
"typescript": "^5.1.6",
"@types/lodash": "^4.14.201",
"lodash": "^4.17.21"
}
}