-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
73 lines (73 loc) · 2.05 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "to-words",
"version": "4.1.0",
"description": "Converts numbers (including decimal points) into words & currency.",
"keywords": [
"to words",
"number to words",
"number to words currency",
"international number to words",
"international number to words currency",
"convert-numbers",
"i18n",
"converter",
"number",
"word",
"currency"
],
"repository": {
"type": "git",
"url": "https://github.com/mastermunj/to-words.git"
},
"license": "MIT",
"author": "Munjal Dhamecha",
"main": "dist/ToWords.js",
"scripts": {
"build": "npm run clean && tsc --noEmitOnError",
"build:watch": "npm run build -- --watch",
"clean": "rimraf dist coverage",
"commit": "git-cz",
"lint": "eslint --max-warnings=0 --ext .ts .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky install",
"release": "standard-version",
"release:mock": "npm run release -- --dry-run",
"test": "jest --detectOpenHandles --coverage --no-cache",
"test:watch": "npm run test -- --watch"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^22.0.0",
"@types/source-map-support": "^0.5.10",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.2.0",
"eslint-plugin-prettier": "^5.1.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"lodash": "^4.17.21",
"prettier": "^3.2.5",
"rimraf": "^6.0.0",
"sort-package-json": "^1.57.0",
"source-map-support": "^0.5.21",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=12.0.0"
}
}