forked from mattcg/language-tags
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.17 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
{
"name": "language-tags",
"version": "1.0.8",
"implements": [
"CommonJS/Modules/1.0"
],
"description": "Work with IANA language tags.",
"main": "lib/index.js",
"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": {
"lint": "eslint --ext=js,mjs .",
"tests-only": "nyc mocha ./test/",
"pretest": "npm run lint",
"test": "npm run tests-only"
},
"keywords": [
"iana",
"bcp47",
"subtags",
"rfc5646",
"m17n",
"multilingualization"
],
"dependencies": {
"language-subtag-registry": "^0.3.20"
},
"devDependencies": {
"coveralls": "^3.1.1",
"eslint": "^8.47.0",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"files": [
"/lib"
],
"engines": {
"node": ">=12"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2022,
"sourceType": "script"
},
"env": {
"node": true
},
"overrides": [
{
"files": "test/**",
"globals": {
"suite": false,
"test": false
}
}
]
}
}