forked from meikidd/iso-639-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.45 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
{
"name": "iso-639-1-dir",
"version": "3.0.5",
"description": "ESM of ISO-639-1 language codes, english names, native names and writing directions. TS-friendly.",
"main": "dist/index.mjs",
"module": "dist/index.mjs",
"exports": {
"node": {
"module": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"default": "./dist/index.mjs"
},
"type": "module",
"typings": "dist/index.d.ts",
"scripts": {
"build": "webpack",
"prepare": "yarn build",
"prepublishOnly": "mocha",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chladog/iso-639-1-dir.git"
},
"keywords": [
"i18n",
"iso",
"iso-639",
"iso-639-1",
"lang",
"code",
"language",
"language code",
"locale",
"locale code",
"language dir",
"language direction",
"writing direction",
"ltr",
"ttb",
"rtl",
"direction",
"typescript",
"typed",
"esm",
"module"
],
"author": "Lukas Chladek <[email protected]>; forked from meikidd <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chladog/iso-639-1-dir/issues"
},
"devDependencies": {
"mocha": "^10.2.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"homepage": "https://github.com/chladog/iso-639-1-dir#readme",
"engines": {
"node": ">=6.0"
}
}