-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
113 lines (113 loc) · 2.25 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@cospired/i18n-iso-languages",
"version": "4.2.0",
"description": "i18n for ISO 639 language codes",
"typings": "index.d.js",
"keywords": [
"i18n",
"iso",
"639",
"iso 639",
"iso 639-1",
"iso 639-2",
"iso 639-2T",
"iso 639-2B",
"alpha",
"alpha-2",
"alpha-3",
"language",
"languages",
"ar",
"bg",
"br",
"cs",
"da",
"de",
"en",
"es",
"fi",
"fr",
"he",
"hu",
"id",
"is",
"it",
"ja",
"ko",
"lt",
"lv",
"ms",
"nl",
"no",
"pl",
"pt",
"ro",
"ru",
"sk",
"sv",
"th",
"uk",
"vi",
"zh"
],
"author": {
"name": "Dirk Haage",
"email": "dirk@cospired.com"
},
"contributors": [
{
"name": "Jan Schmidle",
"email": "jan@cospired.com"
},
{
"name": "Michael Wittig",
"email": "post@michaelwittig.info"
},
{
"name": "Bedis ElAcheche",
"email": "d4rk-5c0rp@ubuntu.com"
},
{
"name": "Bertrand Zuchuat",
"email": "bertrand.zuchuat@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cospired/i18n-iso-languages.git"
},
"devDependencies": {
"@cospired/eslint-config-base": "^6.0.0",
"@hapi/eslint-plugin": "^5.1.0",
"assert-plus": "1.0.0",
"eslint": "^8.11.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-mocha": "^10.0.3",
"madge": "^5.0.1",
"mocha": "^9.2.2",
"npm-check": "^5.9.2",
"nyc": "^15.1.0"
},
"main": "entry-node",
"browser": "index",
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"scripts": {
"lint:ci": "npm run lint -- --max-warnings=0",
"lint:cli": "eslint",
"lint:fix": "eslint --fix .",
"lint": "eslint .",
"npm:update": "npm-check -u",
"postversion": "git push --follow-tags",
"test": "npm run lint:ci && npm run test:circular && npm run test:coverage",
"test:circular": "madge --circular --exclude 'madge|source-map' .",
"test:coverage": "nyc npm run test:mocha",
"test:mocha": "mocha test/*.js"
},
"bugs": {
"url": "https://github.com/cospired/i18n-iso-languages.git/issues"
}
}