-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.1 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.1 KB
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": "unicode-case-folding",
"version": "1.1.1",
"description": "Unicode case folding utilities based on the official Unicode Character Database",
"main": "index.js",
"types": "types.d.ts",
"type": "module",
"scripts": {
"build": "node src/build.js",
"test": "node --test",
"lint": "eslint .",
"lint:fix": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"keywords": [
"unicode",
"case-folding",
"internationalization",
"i18n",
"string",
"case-insensitive"
],
"author": "Aviv Keller <me@aviv.sh>",
"license": "MIT",
"files": [
"types.d.ts",
"index.js",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/avivkeller/unicode-case-folding.git"
},
"bugs": {
"url": "https://github.com/avivkeller/unicode-case-folding/issues"
},
"homepage": "https://github.com/avivkeller/unicode-case-folding#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.2",
"globals": "^17.0.0",
"prettier": "^3.6.2"
}
}