-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.12 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
{
"name": "ar-soundex",
"version": "1.0.4",
"description": "Generate soundex index for Arabic words.",
"main": "bundle/index.js",
"module": "bundle/index.esm.js",
"scripts": {
"build": "rollup -c",
"test": "xo ./src && ava"
},
"keywords": [
"soundex",
"metaphone",
"double",
"metaphone",
"arabic",
"index",
"search",
"spelling"
],
"author": {
"name": "Abdallah Ali",
"email": "a.alshaikh82@gmail.com",
"url": "https://github.com/SupervisionT/arSoundex"
},
"homepage": "https://github.com/SupervisionT/arSoundex",
"repository": "SupervisionT/arSoundex",
"issues": "https://github.com/SupervisionT/arSoundex/issues",
"license": "MIT",
"devDependencies": {
"ava": "^2.4.0",
"esm": "^3.2.25",
"prettier": "^1.18.2",
"rollup": "^1.23.1",
"rollup-plugin-terser": "^5.1.2",
"xo": "^0.25.3"
},
"ava": {
"require": [
"esm"
]
},
"xo": {
"space": true,
"prettier": false
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": true,
"bracketSpacing": false
}
}