-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
65 lines (65 loc) · 1.68 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
{
"name": "break_infinity.js",
"version": "2.1.1",
"description": "Performance-oriented decimal.js replacement for incremental games.",
"type": "module",
"main": "dist/break_infinity.cjs.js",
"module": "dist/break_infinity.esm.js",
"unpkg": "dist/break_infinity.min.js",
"jsdelivr": "dist/break_infinity.min.js",
"typings": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/break_infinity.esm.js",
"require": "./dist/break_infinity.cjs.js"
}
},
"files": [
"dist"
],
"scripts": {
"prebuild": "husky install",
"build": "vite build -c .config/vite.config.js && vite build -c .config/vite.config.umd.js",
"docs": "typedoc",
"test": "jest -c .config/jest.config.cjs",
"test:coverage": "jest -c .config/jest.config.cjs --collectCoverage"
},
"lint-staged": {
"*.ts": [
"eslint --fix"
]
},
"repository": {
"type": "git",
"url": "https://github.com/Patashu/break_infinity.js.git"
},
"keywords": [
"bignum",
"bignumber",
"bigdecimal",
"number",
"decimal"
],
"author": "Patashu",
"license": "MIT",
"bugs": {
"url": "https://github.com/Patashu/break_infinity.js/issues"
},
"homepage": "https://github.com/Patashu/break_infinity.js#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"husky": "^7.0.0",
"jest": "^27.3.1",
"jest-each": "^27.3.1",
"jest-html-reporter": "^3.4.1",
"lint-staged": "^12.0.3",
"ts-jest": "^27.0.7",
"tsup": "^6.6.3",
"typedoc": "^0.23.25",
"typescript": "^4.9.3",
"vite": "^4.1.4"
}
}