-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 878 Bytes
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 878 Bytes
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
{
"name": "language-tags",
"version": "2.1.0",
"description": "Work with IANA language tags.",
"main": "lib/index.js",
"type": "module",
"homepage": "https://github.com/mattcg/language-tags",
"author": "Matthew Caruana Galizia <mattcg@gmail.com>",
"repository": {
"type": "git",
"url": "git://github.com/mattcg/language-tags.git"
},
"bugs": {
"url": "https://github.com/mattcg/language-tags/issues"
},
"license": "MIT",
"scripts": {
"pretest": "eslint ./lib ./test",
"test": "c8 mocha",
"tests-only": "c8 mocha"
},
"keywords": [
"iana",
"bcp47",
"subtags",
"rfc5646",
"m17n",
"multilingualization"
],
"dependencies": {
"language-subtag-registry": "^0.3.20"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^9.17.0",
"mocha": "^11.0.1",
"c8": "^10.1.3"
},
"files": [
"/lib"
],
"engines": {
"node": ">=20"
}
}