-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 1.28 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "locale-codes",
"main": "index.js",
"preferGlobal": false,
"version": "1.3.1",
"description": " Language codes & country codes",
"author": {
"name": "Tiago Danin",
"email": "TiagoDanin@outlook.com",
"url": "https://TiagoDanin.github.io"
},
"license": "MIT",
"keywords": [
"code",
"code-locality",
"codes",
"country",
"i18n",
"iso",
"iso639",
"iso639-1",
"iso639-2",
"json",
"lang",
"language",
"languages",
"lcid",
"locale",
"locales",
"localization",
"module",
"tag",
"windows"
],
"scripts": {
"start": "node index.js",
"test": "xo && tsd && node test.js"
},
"engines": {
"node": ">=v14.17.4"
},
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/TiagoDanin/Locale-Codes.git"
},
"homepage": "https://TiagoDanin.github.io/Locale-Codes",
"bugs": {
"url": "https://github.com/TiagoDanin/Locale-Codes/issues"
},
"github": {
"name": "Locale-Codes",
"owner": "TiagoDanin"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"index.d.ts"
],
"dependencies": {
"iso639-codes": "^1.0.1",
"langs": "^2.0.0",
"windows-locale": "^1.1.0"
},
"devDependencies": {
"tsd": "^0.13.1",
"xo": "^0.30.0"
},
"xo": {
"semicolon": false,
"rules": {
"array-callback-return": "off"
}
}
}