-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.2 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
{
"name": "@neabyte/number-currency",
"version": "1.0.0",
"description": "Universal currency formatter supporting all world currencies with flexible formatting options",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"browser": "dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsc && tsc-alias -f -fe .js && npm run minify",
"minify": "find dist -name '*.js' -exec terser {} --compress --mangle -o {} \\;",
"dev": "tsc --watch",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"format": "prettier --write src/**/*.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build",
"type-check": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui"
},
"keywords": [
"currency",
"formatting",
"international",
"money",
"number-formatting",
"localization",
"browser",
"node",
"typescript",
"es6",
"es2022"
],
"author": {
"name": "NeaByteLab",
"email": "me@neabyte.com",
"url": "https://github.com/NeaByteLab"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/NeaByteLab/Number-Currency.git"
},
"bugs": {
"url": "https://github.com/NeaByteLab/Number-Currency/issues"
},
"homepage": "https://github.com/NeaByteLab/Number-Currency#readme",
"devDependencies": {
"@eslint/js": "^9.33.0",
"@types/node": "^24.3.0",
"@typescript-eslint/eslint-plugin": "^8.40.0",
"@typescript-eslint/parser": "^8.40.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.33.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-sonarjs": "^3.0.4",
"prettier": "^3.6.2",
"terser": "^5.43.1",
"tsc-alias": "^1.8.16",
"tsx": "^4.20.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
}
}