-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.45 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
{
"type": "module",
"name": "fractions-math",
"version": "1.4.0",
"license": "MIT",
"scripts": {
"build": "rm -rf dist && pkgroll --minify && ls -lah dist",
"test": "tsx --test --test-reporter=dot src/main.test.ts",
"test-cov": "tsx --experimental-test-coverage --test src/main.test.ts",
"test-watch": "watchexec -e ts 'clear && npm test'",
"format": "prettier --write --log-level warn .",
"lint": "tsc --noEmit && prettier --check .",
"ci": "npm run lint && npm run test-cov && npm run build"
},
"dependencies": {},
"devDependencies": {
"@types/node": "25.5.0",
"pkgroll": "2.27.0",
"prettier": "3.8.1",
"prettier-plugin-organize-imports": "4.3.0",
"tsx": "4.21.0",
"typescript": "5.9.3"
},
"author": "vladkens <v.pronsky@gmail.com>",
"repository": "vladkens/fractions-math",
"description": "Implementing fractions module from The Python Standard Library on TypeScript",
"keywords": [
"arithmetic",
"calculations",
"convert",
"decimal",
"format",
"fraction",
"fractions",
"imperial",
"math",
"number",
"numbers",
"precise",
"python",
"rational",
"string",
"vulgar"
],
"files": [
"dist"
],
"types": "./dist/main.d.cts",
"exports": {
"require": {
"types": "./dist/main.d.cts",
"default": "./dist/main.cjs"
},
"import": {
"types": "./dist/main.d.mts",
"default": "./dist/main.mjs"
}
}
}