This repository has been archived by the owner on Nov 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.74 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
{
"name": "currencyify",
"description": "A simple TypeScript library for effortless number-to-currency formatting in browsers and Node.js, supporting multiple locales and custom configurations.",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"package.json",
"README.md"
],
"author": {
"name": "Steve McKeogh",
"email": "[email protected]",
"url": "https://mckeogh.uk"
},
"keywords": [
"currency",
"money",
"NumberFormat"
],
"engines": {
"node": "^20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thekeogh/currencyify.git"
},
"bugs": {
"url": "https://github.com/thekeogh/currencyify/issues"
},
"homepage": "https://github.com/thekeogh/currencyify#readme",
"scripts": {
"build": "rimraf ./dist && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"test": "vitest",
"test:watch": "vitest --watch",
"lint": "npm run eslint && npm run prettier",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"eslint": "eslint --ext=ts src tests --no-error-on-unmatched-pattern --quiet || true",
"eslint:fix": "eslint --ext=ts src tests --no-error-on-unmatched-pattern --quiet --fix || true"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@types/node": "^20.8.9",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"eslint-plugin-import": "^2.29.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.5",
"tsc-alias": "^1.8.8",
"typescript": "^5.2.2",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
}
}