-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.57 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@juici/math",
"version": "0.1.0",
"description": "A mathematics utility library",
"keywords": [
"arbitrary",
"precision",
"arithmetic",
"big",
"number",
"decimal",
"float",
"math",
"biginteger",
"bigdecimal",
"bignumber",
"bigmath",
"bigint",
"bignum"
],
"license": "(MIT OR Apache-2.0)",
"files": [
"LICENSE-APACHE",
"LICENSE-MIT",
"dist/",
"src/"
],
"repository": {
"type": "git",
"url": "https://github.com/Juici/math.js.git"
},
"types": "./dist/index.d.ts",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"node": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/esm/index.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "rimraf dist && yarn build:ts && yarn build:types",
"build:ts": "rollup --config rollup.config.mjs",
"build:types": "node ./scripts/build-types.mjs",
"coverage": "jest --coverage",
"lint": "eslint . --cache --ext cjs,mjs,ts,md",
"test": "jest"
},
"devDependencies": {
"@microsoft/api-extractor": "^7.31.2",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/eslint": "^8.4.6",
"@types/jest": "^29.0.3",
"@types/node": "^14.18.30",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"chalk": "^5.0.1",
"deepmerge": "^4.2.2",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-prettier": "^4.2.1",
"execa": "^6.1.0",
"graceful-fs": "^4.2.10",
"jest": "^29.0.3",
"jest-matcher-utils": "^29.0.3",
"jest-watch-typeahead": "^2.2.0",
"pkg-dir": "^7.0.0",
"prettier": "^2.7.1",
"pretty-ms": "^8.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.2",
"tslib": "^2.4.0",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=14.18.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}