-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (40 loc) · 1.08 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
{
"name": "i18n-codes-js",
"version": "0.0.2",
"description": "Country, Locale, Language, Currency Codes in Typescript Library Format",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"generate-data": "node ./data-autoGen/genALL.js",
"generate-typings": "node ./definition-autoGen/genALL.js",
"lint": "npx eslint . --ext .js,.jsx,.ts,.tsx"
},
"repository": {
"type": "git",
"url": "git+https://github.com/InteractivePlus/i18n-codes-js.git"
},
"keywords": [
"iso-639-1",
"locale",
"country",
"language",
"currency"
],
"author": "InteractivePlus",
"license": "MIT",
"bugs": {
"url": "https://github.com/InteractivePlus/i18n-codes-js/issues"
},
"homepage": "https://github.com/InteractivePlus/i18n-codes-js#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.8.0",
"@typescript-eslint/parser": "^5.8.0",
"eslint": "^8.5.0",
"typescript": "^4.5.4",
"@types/node": "^16.0.1"
},
"dependencies": {
},
"type": "module"
}