-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
40 lines (40 loc) · 903 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
{
"name": "language-subtag-registry",
"version": "0.4.1",
"type": "module",
"description": "Full BCP 47 language subtag data from the official IANA repository, in JSON format with multiple indices.",
"homepage": "https://github.com/mattcg/language-subtag-registry",
"repository": {
"type": "git",
"url": "https://github.com/mattcg/language-subtag-registry"
},
"contributors": [
{
"name": "Matthew Caruana Galizia",
"email": "[email protected]"
},
{
"name": "Guillaume Gérard",
"email": "[email protected]"
}
],
"license": "CC0-1.0",
"scripts": {
"test": "find ./data/json/*.json -exec ./node_modules/.bin/jsonlint -q {} \\;",
"import": "node scripts/importer"
},
"files": [
"data/json/*.json"
],
"keywords": [
"iana",
"bcp47",
"subtags",
"rfc5646",
"language"
],
"devDependencies": {
"jsonlint": "^1.6.3",
"eslint": "^9.17.0"
}
}