-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 1.95 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 1.95 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
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
{
"name": "cmath-js",
"homepage": "https://github.com/oskarlh/cmath-js",
"repository": {
"type": "git",
"url": "git+https://github.com/oskarlh/cmath-js.git"
},
"version": "5.14.0",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./numbers": {
"types": "./dist/numbers.d.ts",
"default": "./dist/numbers.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"author": "Oskar Larsson Högfeldt <oskar@oskar.pm>",
"contributors": [
"Oskar Larsson Högfeldt <oskar@oskar.pm>",
"Joey Jo <joeyjosha@proton.me>"
],
"license": "MIT",
"description": "C's and C++'s math functions in TypeScript & JavaScript",
"keywords": [
"bigint",
"Bit operations",
"Bits",
"C",
"C++",
"cmath-js",
"cmath",
"double",
"ECMAScript",
"float",
"float64",
"frexp",
"gcd",
"IEEE754",
"int32",
"int53",
"iota",
"JavaScript",
"lcm",
"Math",
"Mathematics",
"Maths",
"NaN",
"Node",
"NodeJS",
"Numbers",
"Numerics",
"popcount",
"signbit",
"STL",
"TypeScript"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chai": "^5.2.3",
"@types/node": "^24",
"chai": "^6.2.2",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3",
"typescript": "~6.0",
"typescript-eslint": "^8.53.1"
},
"scripts": {
"build": "tsc --project tsconfig.build.json",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"prepack": "node --run build",
"test": "node --test --experimental-test-coverage",
"test-with-typechecking": "node --run typecheck && node --run test",
"typecheck": "tsc --noEmit",
"verify": "node --run test -- --test-coverage-branches=100 --test-coverage-functions=100 --test-coverage-lines=100 && node --run lint && node --run typecheck"
},
"files": [
"dist"
],
"funding": [
{
"type": "github",
"url": "https://github.com/oskarlh/cmath-js?sponsor=1"
}
]
}