-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 984 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
40
41
42
43
44
45
46
{
"name": "locale-includes",
"version": "1.0.6",
"description": "String.prototype.includes() but using localeCompare.",
"main": "lib/index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "babel src -d lib",
"build:watch": "babel src -d lib -w",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/idmadj/locale-includes.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/idmadj/locale-includes/issues"
},
"homepage": "https://github.com/idmadj/locale-includes#readme",
"keywords": [
"localeincludes",
"locale",
"includes",
"contains",
"string",
"localecompare",
"search",
"filter",
"match",
"diacritics",
"accents",
"case",
"insensitive",
"i18n",
"esm",
"module"
],
"devDependencies": {
"@babel/cli": "^7.23.0",
"@babel/core": "^7.23.3",
"@babel/preset-env": "^7.23.3"
}
}