-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 2.29 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
{
"name": "language-name-to-language-name",
"version": "0.5.1",
"description": "Language names on other language names (base list from ISO 639-1)",
"main": "lib/",
"module": "lib/es/index.js",
"files": [
"lib/"
],
"repository": {
"type": "git",
"url": "https://github.com/hmelenok/language-name-to-language-name.git"
},
"types": "./lib/index.d.ts",
"author": "Khmel Mykyta <[email protected]>",
"license": "MIT",
"private": false,
"sideEffects": false,
"scripts": {
"lint": "eslint . --cache --fix --ignore-path=.eslintignore",
"extract-fr": "node ./scripts/extract-french.js",
"extract-uk": "node ./scripts/extract-ukrainian.js",
"extract-de": "node ./scripts/extract-german.js",
"extract-ru": "node ./scripts/extract-russian-with-german.js",
"extract-nb": "node ./scripts/extract-norsk-bokmal.js",
"extract-country-names": "node ./scripts/extract-country-codes.js",
"build:types": "tsc -p tsconfig.types.json",
"build": "rm -rf lib/ && yarn build:types && yarn build:es && yarn build:commonjs",
"build:es": "tsc -p tsconfig.es.json",
"build:commonjs": "tsc",
"coverage": "TZ=UTC jest --coverage",
"prepack": "yarn build",
"test": "TZ=UTC jest",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"prepare": "husky install"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.3",
"@babel/plugin-proposal-class-properties": "7.18.6",
"@babel/plugin-proposal-optional-chaining": "7.18.9",
"@babel/plugin-transform-runtime": "7.19.1",
"@babel/preset-env": "7.19.3",
"@babel/preset-typescript": "7.18.6",
"@types/jest": "29.1.2",
"@types/lodash": "^4.14.186",
"@types/node": "18.8.2",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"babel-jest": "29.1.2",
"eslint": "8.24.0",
"eslint-config-airbnb-typescript": "17.0.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^7.0.0",
"jest": "29.1.2",
"lint-staged": "13.0.3",
"prettier": "2.7.1",
"typescript": "^4.8.4"
},
"lint-staged": {
"*.{html,md,yml}": [
"prettier --write --ignore-path=./.eslintignore",
"git add"
],
"*.{ts,js}": [
"yarn lint",
"git add"
]
}
}