-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.74 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": "gulp-fill-pot-po",
"version": "4.0.0",
"description": "Create pre-filled po files using existing po files with pot file via gulp",
"author": {
"name": "Philip van Heemstra",
"url": "https://github.com/vheemstra"
},
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "npm run build -- --watch src",
"build": "tsup",
"lint": "eslint src/*.ts test/*.ts",
"lint:fix": "eslint --fix src/*.ts test/*.ts",
"test": "jest",
"coverage": "jest --coverage",
"build:test": "tsup && jest"
},
"engines": {
"node": ">=18"
},
"files": [
"dist"
],
"keywords": [
"gulpplugin",
"fill-pot-po",
"pot",
"po",
"fill",
"merge",
"auto-fill",
"prefill",
"pre-fill",
"generate",
"create",
"i18n",
"l10n",
"gettext",
"translation"
],
"repository": "https://github.com/vheemstra/gulp-fill-pot-po.git",
"homepage": "https://github.com/vheemstra/gulp-fill-pot-po",
"bugs": "https://github.com/vheemstra/gulp-fill-pot-po/issues",
"dependencies": {
"fill-pot-po": "^4.0.2",
"plugin-error": "^2.0.1",
"vinyl": "^3.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/vinyl": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.15.0",
"babel-plugin-transform-import-meta": "^2.2.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.6.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"matched": "^5.0.1",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.5.3",
"utility-types": "^3.11.0"
}
}