-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.19 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
{
"name": "fill-pot-po",
"version": "2.1.10",
"description": "Create pre-filled PO files from POT file, using previous PO files.",
"main": "src/index.js",
"scripts": {
"lint": "eslint src/*.js test/*.js",
"lint:fix": "eslint --fix src/*.js test/*.js",
"test": "jest"
},
"keywords": [
"pot",
"po",
"fill",
"merge",
"auto-fill",
"prefill",
"pre-fill",
"generate",
"create",
"i18n",
"l10n",
"gettext",
"translation"
],
"repository": "https://github.com/vheemstra/fill-pot-po.git",
"homepage": "https://github.com/vheemstra/fill-pot-po",
"bugs": "https://github.com/vheemstra/fill-pot-po/issues",
"author": {
"name": "Philip van Heemstra",
"url": "https://github.com/vheemstra"
},
"engines": {
"node": ">=12"
},
"files": [
"src"
],
"license": "MIT",
"dependencies": {
"ansi-colors": "^4.1.3",
"color-support": "^1.1.3",
"gettext-parser": "^6.0.0",
"matched": "^5.0.1",
"vinyl": "^2.2.1"
},
"devDependencies": {
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.0.4",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.0.3"
}
}