-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.49 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.49 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "simpleen",
"description": "Translate i18n locale files with simpleen translation",
"version": "0.6.3",
"author": "Denis Augsburger <denis.augsburger@simpleen.io> (https://simpleen.io)",
"bin": {
"simpleen": "./bin/run"
},
"bugs": "https://github.com/daugsbi/simpleen-cli/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^5.1.12",
"@oclif/plugin-warn-if-update-available": "^2.0.4",
"axios": "^0.27.2",
"flat": "^5.0.2",
"fuzzy": "^0.1.3",
"inquirer": "^8.2.4",
"inquirer-checkbox-plus-prompt": "^1.0.1",
"listr": "^0.14.3",
"lodash.merge": "^4.6.2",
"lodash.omit": "^4.5.0",
"lodash.sortby": "^4.7.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-typescript": "^7.17.12",
"@oclif/dev-cli": "^1",
"@oclif/test": "^2.1.0",
"@types/chai": "^4.2.22",
"@types/flat": "^5.0.2",
"@types/inquirer": "^8.1.3",
"@types/jest": "^27.5.1",
"@types/listr": "^0.14.4",
"@types/lodash.merge": "^4.6.6",
"@types/lodash.omit": "^4.5.6",
"@types/lodash.sortby": "^4.7.6",
"@types/node": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"babel-jest": "^28.1.0",
"chai": "^4.3.4",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^28.1.0",
"jest-diff": "^28.1.0",
"prettier": "^2.4.1",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://simpleen.io/cli-documentation",
"keywords": [
"translation",
"i18n",
"translate",
"formatjs",
"i18next",
"linguijs",
"deepl",
"ngx-translate"
],
"license": "BSD-3-Clause",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "simpleen",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-warn-if-update-available"
]
},
"repository": "https://github.com/daugsbi/simpleen-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint . --ext .ts"
},
"types": "lib/index.d.ts"
}