-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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": "arabic-services",
"version": "1.0.7",
"description": "Utility functions on Arabic text",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "ts-node src/index.ts",
"build": "tsc",
"clean": "rimraf dist",
"test": "jest --config jest.config.cjs --coverage",
"prepublishOnly": "npm run build",
"format": "npx prettier --write . --ignore-path .gitignore",
"lint": "eslint \"src/**/*.{ts,tsx}\" --quiet",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"bundle": "webpack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Seen-Arabic/Arabic-Services-JavaScript.git"
},
"keywords": [
"arabic",
"arabic-services",
"services",
"old-arabic",
"nlp",
"tashkeel",
"tatweel",
"dotless arabic",
"language"
],
"author": {
"name": "Seen Arabic",
"email": "[email protected]",
"url": "http://seen-arabic.github.io"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Seen-Arabic/Arabic-Services-JavaScript/issues"
},
"homepage": "https://github.com/Seen-Arabic/Arabic-Services-JavaScript#readme",
"devDependencies": {
"@types/jest": "^29.5.5",
"@typescript-eslint/eslint-plugin": "^6.7.5",
"@typescript-eslint/parser": "^6.7.5",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.1.1",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}