-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 963 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 963 Bytes
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
{
"name": "num2fa",
"version": "1.0.0",
"description": "Convert numbers to Persian numbers and words",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint . --ext .ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "husky",
"prepublishOnly": "npm test && npm run lint"
},
"keywords": [
"persian",
"farsi",
"numbers",
"converter",
"words"
],
"author": "Emad Rad",
"license": "AGPL-3.0",
"devDependencies": {
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"husky": "^9.1.7",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.4"
},
"files": [
"dist/**/*"
]
}