-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.1 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 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
{
"name": "locale-matcher",
"version": "2.2.1",
"description": "The super-fast locale matcher and normalizer.",
"type": "module",
"main": "./index.js",
"types": "./index.d.ts",
"scripts": {
"build": "tsc --project tsconfig.build.json && cp package.json README.md LICENSE.txt lib/ && cd lib && npm pkg delete scripts devDependencies",
"clean": "rimraf lib coverage",
"test": "vitest run",
"perf": "toofast"
},
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/smikhalevski/locale-matcher.git"
},
"keywords": [
"locale",
"language",
"intl",
"bcp47",
"iso639"
],
"author": "Savva Mikhalevski <smikhalevski@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/smikhalevski/locale-matcher/issues"
},
"homepage": "https://github.com/smikhalevski/locale-matcher#readme",
"devDependencies": {
"@formatjs/intl-localematcher": "^0.6.2",
"@types/node": "^24.8.1",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"toofast": "^3.0.3",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}