-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.3 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
{
"name": "yata-fetch",
"version": "2.1.5",
"packageManager": "[email protected]",
"type": "module",
"description": "Adds CLI interface for importing translation files from Yata",
"license": "MIT",
"main": "./dist/yata",
"author": "Dominik Zborowski <[email protected]>",
"keywords": [
"yata",
"translations",
"i18n",
"locale",
"yatapp"
],
"repository": {
"type": "git",
"url": "git://github.com/dzbo/yata-fetch.git"
},
"bin": "./bin/yata-fetch.js",
"scripts": {
"build": "vite build",
"generate": "node bin/yata-fetch.js --config test/fixtures/yata.json",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "npm-run-all --aggregate-output --continue-on-error --parallel \"lint:*\"",
"lint:eslint": "eslint src --ext .js,.ts,.vue",
"lint:ts": "tsc --noEmit",
"lint:fmt": "prettier --check --loglevel=warn --write ."
},
"dependencies": {
"nconf": "0.12.0"
},
"devDependencies": {
"@types/nconf": "0.10.3",
"@types/node": "18.16.1",
"@typescript-eslint/eslint-plugin": "5.59.1",
"@typescript-eslint/parser": "5.59.1",
"c8": "7.13.0",
"eslint": "8.39.0",
"npm-run-all": "4.1.5",
"prettier": "2.8.8",
"typescript": "^5.0.4",
"vite": "^4.3.2",
"vitest": "0.30.1"
}
}