-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.22 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
{
"name": "big.esm",
"version": "1.3.1",
"description": "A small, fast JavaScript library for arbitrary-precision decimal arithmetic.",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"coverage": "vitest run --coverage",
"docs": "typedoc --out docs",
"lint": "eslint --ext .ts,.js,.json ./src",
"lint:fix": "eslint --fix --ext .ts,.js,.json ./src",
"benchmark": "node --expose-gc ./benchmark.js",
"semantic-release": "semantic-release",
"prepare": "is-ci || husky install"
},
"main": "dist/big.esm.umd.cjs",
"module": "dist/big.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"package.json",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/dschewchenko/big.esm.git"
},
"keywords": [
"big",
"number",
"bigint",
"decimal",
"math",
"operations"
],
"author": "dschewchenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/dschewchenko/big.esm/issues"
},
"homepage": "https://github.com/dschewchenko/big.esm#readme",
"engines": {
"node": ">=16"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"@vitest/coverage-c8": "^0.31.0",
"@vitest/ui": "^0.31.0",
"big.js": "^6.2.1",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"is-ci": "^3.0.1",
"prettier": "^2.8.8",
"rollup-plugin-visualizer": "^5.9.0",
"semantic-release": "^21.0.5",
"ts-jest": "^29.1.0",
"typedoc": "^0.24.8",
"typedoc-plugin-mdn-links": "^3.0.3",
"typedoc-plugin-merge-modules": "^5.0.1",
"typedoc-plugin-pages": "^1.1.0",
"typescript": "^5.0.4",
"vite": "^4.3.9",
"vite-plugin-dts": "^2.3.0",
"vitest": "^0.31.0"
}
}