forked from pocesar/js-diacritic-regex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 971 Bytes
/
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
{
"name": "diacritic-regex",
"version": "1.1.0",
"description": "String to a regex that is diacritic insensitive",
"main": "./index.js",
"scripts": {
"test": "mocha -R spec index.test.js",
"compile": "tsc -p tsconfig.json",
"prepublishOnly": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pocesar/js-diacritic-regex.git"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/chai": "^4.2.0",
"mocha": "^6.2.0",
"chai": "^4.2.0",
"typescript": "^3.6.2"
},
"keywords": [
"diacritic",
"regex",
"accent",
"regular expression",
"transliteration",
"string",
"ascii",
"collation"
],
"author": "Paulo Cesar <https://github.com/pocesar>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pocesar/js-diacritic-regex/issues"
},
"typings": "./index.d.ts",
"homepage": "https://github.com/pocesar/js-diacritic-regex#readme"
}