forked from persian-tools/persian-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·84 lines (84 loc) · 2.58 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
74
75
76
77
78
79
80
81
82
83
84
{
"name": "persian-tools2",
"version": "1.5.0",
"description": "An anthology of a variety of tools for Persian language in javascript",
"main": "dist/index.js",
"module": "dist/index.es.js",
"browser": "dist/index.bowser.js",
"scripts": {
"test": "jest",
"lint": "eslint \"src/**/*.{ts,json}\" --max-warnings=0",
"lint:fix": "npm run lint -- --fix",
"watch": "rollup --watch -c rollup.config.js",
"build": "rollup -c --environment INCLUDE_DEPS,BUILD:production",
"prerelease": "npm run test",
"release": "npm run build",
"postrelease": "standard-version && npm run generate:docs",
"prettier": "prettier --write 'src/**/*.{ts,json}' --config .prettierrc.js",
"prettier:ci": "prettier --list-different 'src/**/*.{ts,json}' --config .prettierrc.js",
"generate:docs": "make publish-docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/persian-tools/persian-tools.git"
},
"files": [
"src",
"dist"
],
"keywords": [
"persian tools",
"number to persian words",
"persian words to number",
"Arabic numbers to Persian",
"Arabic numbers to English",
"English numbers to Persian",
"Persian numbers to English",
"verify iranian national id",
"verify iranian card-number",
"Persian zero-width non-joiner"
],
"author": "Ali Torki <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/persian-tools/persian-tools/issues"
},
"homepage": "https://persian-tools.github.io/persian-tools",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/jest": "^26.0.19",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"eslint": "^7.16.0",
"eslint-config-standard": "^16.0.2",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.1.0",
"jest": "^26.6.3",
"jest-cli": "^26.6.3",
"prettier": "^2.2.1",
"prettier-eslint": "^12.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.35.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-progress": "^1.1.2",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"standard-version": "^9.0.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"typedoc": "^0.19.2",
"typescript": "^4.1.3"
},
"dependencies": {
"fastest-levenshtein": "^1.0.12"
}
}