-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.43 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.43 KB
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": "bignumber-notation",
"version": "1.0.0",
"description": "BigNumber arithmetic with tagged template literals - write natural math expressions",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./index.js"
}
},
"sideEffects": false,
"files": [
"index.js",
"index.d.ts",
"bignumber-notation.js",
"LICENSE",
"README.md"
],
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/stpoa/bignumber-notation.git"
},
"keywords": [
"bignumber",
"tagged-template",
"bignumber-notation",
"arithmetic",
"math",
"precision",
"big",
"number",
"decimal"
],
"author": "stpoa",
"license": "MIT",
"bugs": {
"url": "https://github.com/stpoa/bignumber-notation/issues"
},
"homepage": "https://github.com/stpoa/bignumber-notation#readme",
"devDependencies": {
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"prettier": "^3.4.0",
"vitest": "^3.0.0"
},
"dependencies": {
"bignumber.js": "^9.1.2"
},
"engines": {
"node": ">=18.0.0"
}
}