-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"version": "1.0.1",
"keywords": [
"textlintrule"
],
"main": "lib/index.js",
"files": [
"lib/",
"src/"
],
"scripts": {
"test": "npm run update; textlint-scripts test",
"build": "npm run update; textlint-scripts build",
"prepublish": "npm run --if-present build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"update": "node src/update.js"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "es5"
},
"devDependencies": {
"@textlint/types": "^14.0.4",
"prettier": "^3.3.2",
"textlint-scripts": "^14.0.4",
"textlint-tester": "^14.0.4",
"unicode": "^14.0.0"
},
"name": "textlint-rule-arabic-letter-forms",
"description": "a rule to find strict forms of letters (isolated, initial, medial, final) and normalize them",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aborazmeh/textlint-rule-arabic-letter-forms.git"
},
"author": "aborazmeh",
"license": "MIT",
"bugs": {
"url": "https://github.com/aborazmeh/textlint-rule-arabic-letter-forms/issues"
},
"homepage": "https://github.com/aborazmeh/textlint-rule-arabic-letter-forms#readme"
}